diff options
| author | Brenden Bice <brenden.next@gmail.com> | 2019-04-05 05:49:31 -0400 |
|---|---|---|
| committer | Brenden Bice <brenden.next@gmail.com> | 2019-04-11 23:26:13 -0400 |
| commit | f6847c163cf7fb82af73ab413c9459b89df77143 (patch) | |
| tree | 4ad42aa261b798370f5301dccde9a9ded19280d7 /src/components/avatar_list | |
| parent | db2733b2654d3d7dc1c82d6d61eb34d559df5815 (diff) | |
adjust avatar size of avatar list
Diffstat (limited to 'src/components/avatar_list')
| -rw-r--r-- | src/components/avatar_list/avatar_list.vue | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/components/avatar_list/avatar_list.vue b/src/components/avatar_list/avatar_list.vue index dea1267e..d7ac22dd 100644 --- a/src/components/avatar_list/avatar_list.vue +++ b/src/components/avatar_list/avatar_list.vue @@ -17,10 +17,15 @@ padding: 0; &-item { - height: 25px; - width: 25px; - margin: 0 2px 0 0; - padding: 0; + height: 24px; + width: 24px; + margin: 0 5px 0 0; + padding: 11px 0; + + &:first-child { + border-left: 1px solid var(--faint, $fallback--faint); + padding-left: 12px !important; + } &:last-child { margin-right: 0; @@ -29,8 +34,8 @@ .avatars-img { border-radius: $fallback--avatarAltRadius; border-radius: var(--avatarAltRadius, $fallback--avatarAltRadius); - height: 25px !important; - width: 25px !important; + height: 24px !important; + width: 24px !important; background-color: $fallback--lightText; background-color: var(--lightText, $fallback--lightText); } |
