aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_profile/user_profile.vue
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2016-12-08 09:09:21 +0100
committerRoger Braun <roger@rogerbraun.net>2016-12-08 09:09:21 +0100
commitfc268c48bc95ee8947da071305a436b293f44c02 (patch)
treed5753fba620f24151fd1895aba194184d6cf16e4 /src/components/user_profile/user_profile.vue
parentf18f87747f72e8ee45ea0eebe5fd2878e116e02e (diff)
Very basic user following.
Diffstat (limited to 'src/components/user_profile/user_profile.vue')
-rw-r--r--src/components/user_profile/user_profile.vue17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/components/user_profile/user_profile.vue b/src/components/user_profile/user_profile.vue
index eaa5396d..2ceb13ec 100644
--- a/src/components/user_profile/user_profile.vue
+++ b/src/components/user_profile/user_profile.vue
@@ -5,3 +5,20 @@
</template>
<script src="./user_profile.js"></script>
+
+<style lang="scss">
+ .user-profile {
+ flex: 2;
+ flex-basis: 500px;
+ }
+
+ .user-info {
+ .following-info {
+ display: flex;
+
+ div {
+ flex: 1;
+ }
+ }
+ }
+</style>