diff options
| author | taehoon <th.dev91@gmail.com> | 2019-02-26 07:13:09 -0500 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-02-28 12:41:20 -0500 |
| commit | 8dd42cfc65cb572c5e218d01a0a19ab14d1e5591 (patch) | |
| tree | 5b0d87915e0fee281823a35f654cf53929c81df9 | |
| parent | 30f5bf1463cf7f850df5a50253eb69c1c48db371 (diff) | |
Add back some css
| -rw-r--r-- | src/components/user_card_content/user_card_content.vue | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/components/user_card_content/user_card_content.vue b/src/components/user_card_content/user_card_content.vue index a3d24eb1..689b9ec6 100644 --- a/src/components/user_card_content/user_card_content.vue +++ b/src/components/user_card_content/user_card_content.vue @@ -222,6 +222,13 @@ overflow: hidden; flex: 1 1 auto; margin-right: 1em; + + img { + object-fit: contain; + height: 16px; + width: 16px; + vertical-align: middle; + } } .user-screen-name { @@ -386,4 +393,24 @@ } } +.usercard { + width: fill-available; + border-radius: $fallback--panelRadius; + border-radius: var(--panelRadius, $fallback--panelRadius); + border-style: solid; + border-color: $fallback--border; + border-color: var(--border, $fallback--border); + border-width: 1px; + overflow: hidden; + + .panel-heading { + background: transparent; + flex-direction: column; + align-items: stretch; + } + + p { + margin-bottom: 0; + } +} </style> |
