logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: c2178819a094eb233aab67c9af64a7fb894d1579
parent: 209e8614b09ab7f24262d86de0924bd2e0dd96ec
Author: lambadalambda <gitgud@rogerbraun.net>
Date:   Sat, 18 Feb 2017 15:02:31 -0500

Merge branch 'fix/prevent_follow_mute_button_deforming' into 'develop'

Fix follow/mute buttons from getting squished on mobile

See merge request !17

Diffstat:

Msrc/components/user_profile/user_profile.vue5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git 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 {