diff options
| author | lambadalambda <gitgud@rogerbraun.net> | 2017-02-18 11:27:54 -0500 |
|---|---|---|
| committer | lambadalambda <gitgud@rogerbraun.net> | 2017-02-18 11:27:54 -0500 |
| commit | 44b6a90fc56b4f02c9220af94d93a01932728f7d (patch) | |
| tree | 52dc97f43bbd05d3e2f6c3ffc578d9535ad2c7e2 /src/components/user_profile/user_profile.vue | |
| parent | 4e366f27a17f4f50282903b7190fb29452ee33dc (diff) | |
| parent | 15c82dea62120b097e35f1443748c5996141a730 (diff) | |
Merge branch 'develop' into 'develop'
Make user card look neater
See merge request !16
Diffstat (limited to 'src/components/user_profile/user_profile.vue')
| -rw-r--r-- | src/components/user_profile/user_profile.vue | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/src/components/user_profile/user_profile.vue b/src/components/user_profile/user_profile.vue index 962318e4..08221ac8 100644 --- a/src/components/user_profile/user_profile.vue +++ b/src/components/user_profile/user_profile.vue @@ -13,17 +13,35 @@ } .user-info { - .following-info { + .user-interactions { display: flex; + flex-flow: row wrap; div { flex: 1; } - margin-top: 1em; + margin-top: 0.5em; margin-bottom: -1.2em; - } - .muteinfo{ - margin: 0.5em 0; + + .following { + font-size: 14px; + flex: 0 0 100%; + margin-bottom: 0.5em; + } + + .mute { + margin-right: 4em; + } + + .follow { + margin-left: 4em; + } + + button { + width: 80%; + height: 100%; + border: 1px solid; + } } .user-screen-name { margin-top: 0.4em; |
