FIX: improves positioning of footer buttons on mobile (#6989)

This commit is contained in:
Joffrey JAFFEUX 2019-02-08 12:09:56 +01:00 committed by GitHub
parent 831d7d2f87
commit 8a152566e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 4 deletions

View File

@ -244,8 +244,7 @@ a.reply-to-tab {
color: $tertiary; color: $tertiary;
} }
.combobox { .combobox {
float: left; margin-right: 0.5em;
margin-right: 1em;
width: 160px; width: 160px;
margin-bottom: 0.5em; margin-bottom: 0.5em;
} }
@ -288,8 +287,8 @@ span.post-count {
#topic-footer-buttons { #topic-footer-buttons {
.btn { .btn {
margin-bottom: 5px; margin-bottom: 0.5em;
margin-right: 10px; margin-right: 0.5em;
} }
} }

View File

@ -215,3 +215,9 @@ sub sub {
margin-right: 0; margin-right: 0;
} }
} }
.topic-footer-main-buttons {
display: flex;
align-items: center;
flex-wrap: wrap;
}