fix(ui): put buttons in a single row on mobile

This commit is contained in:
0ko 2024-11-21 22:46:06 +05:00
parent 8f0de303f3
commit 787e3163f8
5 changed files with 17 additions and 34 deletions

View file

@ -250,6 +250,20 @@ h1.error-code {
gap: 0.5rem;
}
.button-sequence {
display: flex;
flex-flow: wrap;
gap: 0.5em;
}
.button-sequence.right {
justify-content: end;
}
.button-sequence .ui.button {
margin: 0 !important;
}
.button-row .ui.button {
margin-right: 0;
}