mirror of https://github.com/MaxLeiter/Drift
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
357 B
CSS
22 lines
357 B
CSS
.buttons {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
margin-top: var(--gap-double);
|
|
}
|
|
|
|
.title {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
@media screen and (max-width: 650px) {
|
|
.title {
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
}
|
|
}
|