Using vertical button layout in consent warning on small screens.

This commit is contained in:
DebaucheryLibrarian 2021-01-04 01:46:05 +01:00
parent be15e360c1
commit df5a9c9fd9
1 changed files with 8 additions and 2 deletions

View File

@ -215,9 +215,15 @@ export default {
.title {
font-size: 1.5rem;
}
}
.button:not(:last-child) {
margin: 0 1rem 0 0;
@media(max-width: $breakpoint-small) {
.actions {
flex-direction: column-reverse;
.button {
margin: 0 0 1rem 0;
}
}
}