diff options
| author | lambda <pleromagit@rogerbraun.net> | 2017-11-20 11:51:52 +0000 |
|---|---|---|
| committer | lambda <pleromagit@rogerbraun.net> | 2017-11-20 11:51:52 +0000 |
| commit | 6ac8a43e28e11c6970ec62733a551f41ce04e80c (patch) | |
| tree | 203206877a3383205644bc4a447ed39e1e0c87e1 /src/components/user_card/user_card.vue | |
| parent | 099bac517af630a94ae049d0f357c9389144cf2b (diff) | |
| parent | 90c8d802790b29572423c680d7bd6af656c99ded (diff) | |
Merge branch 'fix/style-fixes-again' into 'develop'
More style fixes
See merge request pleroma/pleroma-fe!167
Diffstat (limited to 'src/components/user_card/user_card.vue')
| -rw-r--r-- | src/components/user_card/user_card.vue | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/components/user_card/user_card.vue b/src/components/user_card/user_card.vue index a9b8b602..ba315faa 100644 --- a/src/components/user_card/user_card.vue +++ b/src/components/user_card/user_card.vue @@ -1,9 +1,9 @@ <template> - <div class="card base00-background base03-border"> + <div class="card base00-background"> <a href="#"> <img @click.prevent="toggleUserExpanded" class="avatar" :src="user.profile_image_url"> </a> - <div class="base05 base05=border usercard" v-if="userExpanded"> + <div class="usercard" v-if="userExpanded"> <user-card-content :user="user" :switcher="false"></user-card-content> </div> <div class="name-and-screen-name" v-else> @@ -62,6 +62,10 @@ width: -webkit-fill-available; width: -moz-webkit-fill-available; stretch: fill; - margin-left: 0.7em; + margin: 0.2em 0 0.7em 0; + border-radius: 5px; + border-style: solid; + border-color: inherit; + border-width: 1px; } </style> |
