Fix follow and mute buttons from getting squished on mobile

This commit is contained in:
shpuld 2017-02-18 19:46:10 +02:00
parent e111693b08
commit be2b90df1d

View file

@ -16,6 +16,7 @@
.user-interactions { .user-interactions {
display: flex; display: flex;
flex-flow: row wrap; flex-flow: row wrap;
justify-content: center;
div { div {
flex: 1; flex: 1;
@ -30,11 +31,11 @@
} }
.mute { .mute {
margin-right: 4em; max-width: 200px;
} }
.follow { .follow {
margin-left: 4em; max-width: 200px;
} }
button { button {