diff options
| author | lambadalambda <gitgud@rogerbraun.net> | 2017-02-18 15:02:31 -0500 |
|---|---|---|
| committer | lambadalambda <gitgud@rogerbraun.net> | 2017-02-18 15:02:31 -0500 |
| commit | c2178819a094eb233aab67c9af64a7fb894d1579 (patch) | |
| tree | 46712467c13d5fd815ccbbc246fc37ce1b2b4652 | |
| parent | 209e8614b09ab7f24262d86de0924bd2e0dd96ec (diff) | |
| parent | 8a0197d68224e816b3e569c36ed3dfd931088386 (diff) | |
Merge branch 'fix/prevent_follow_mute_button_deforming' into 'develop'
Fix follow/mute buttons from getting squished on mobile
See merge request !17
| -rw-r--r-- | src/components/user_profile/user_profile.vue | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/user_profile/user_profile.vue b/src/components/user_profile/user_profile.vue index 08221ac8..b0d6db85 100644 --- a/src/components/user_profile/user_profile.vue +++ b/src/components/user_profile/user_profile.vue @@ -16,6 +16,7 @@ .user-interactions { display: flex; flex-flow: row wrap; + justify-content: center; div { flex: 1; @@ -30,11 +31,11 @@ } .mute { - margin-right: 4em; + max-width: 200px; } .follow { - margin-left: 4em; + max-width: 200px; } button { |
