Skip to content

Commit

Permalink
Merge pull request #6091 from nextcloud-libraries/backport/6090/next
Browse files Browse the repository at this point in the history
[next] fix(NcAvatar): add a fallback for missing CSS variable
  • Loading branch information
Antreesy committed Sep 16, 2024
2 parents 7c9dd5e + 5cc3410 commit cc80320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/NcAvatar/NcAvatar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ export default {
height: 40%;
width: 40%;
line-height: 1;
font-size: clamp(var(--font-size-small), 85%, var(--default-font-size));
font-size: clamp(var(--font-size-small, 13px), 85%, var(--default-font-size));
border: 2px solid var(--color-main-background);
background-color: var(--color-main-background);
background-repeat: no-repeat;
Expand Down

0 comments on commit cc80320

Please sign in to comment.