Skip to content

Commit

Permalink
Reduce size of status icons in Avatar component
Browse files Browse the repository at this point in the history
Now use 40% with of parent a max size of 18px. For talk participant bar
the size remains unchanged still 18px, but for the new avatar component
in the navbar the size is now 13px.

Signed-off-by: Carl Schwan <[email protected]>
  • Loading branch information
CarlSchwan committed Oct 18, 2021
1 parent 89161d4 commit 557066e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/Avatar/Avatar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -669,8 +669,10 @@ export default {
position: absolute;
right: -4px;
bottom: -4px;
height: 18px;
width: 18px;
max-height: 18px;
max-width: 18px;
height: 40%;
width: 40%;
line-height: 15px;
font-size: var(--default-font-size);
border: 2px solid var(--color-main-background);
Expand Down

0 comments on commit 557066e

Please sign in to comment.