Fix submission button for posts on mobile

Closes #747

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2021-06-30 17:15:13 +02:00
parent 02931ec0cd
commit 909a1030ef
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 14 additions and 3 deletions

View File

@ -395,12 +395,23 @@ export default class EditPost extends mixins(GroupMixin) {
}
form {
nav.navbar {
position: sticky;
bottom: 0;
min-height: 2rem;
min-height: 2rem !important;
background: lighten($secondary, 10%);
.container {
min-height: 2rem;
.navbar-menu,
.navbar-end {
display: flex !important;
background: lighten($secondary, 10%);
flex-wrap: wrap;
}
.navbar-end {
justify-content: flex-end;
margin-left: auto;
}
}
}
}