Skip to content

Commit

Permalink
fix: Fix display on iOS
Browse files Browse the repository at this point in the history
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
  • Loading branch information
raimund-schluessler committed Sep 22, 2023
1 parent 7fdfe23 commit 41433a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/NcIconSvgWrapper/NcIconSvgWrapper.vue
Expand Up @@ -32,9 +32,7 @@ Render raw SVG string icons.
<div class="grid">
<NcButton aria-label="Close">
<template #icon>
<svg viewBox="0 0 24 24" id="mdi-close" xmlns="http://www.w3.org/2000/svg">
<path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" />
</svg>
<NcIconSvgWrapper :svg="closeSvg" name="Close" />
</template>
</NcButton>
<NcButton aria-label="Settings">
Expand Down Expand Up @@ -137,6 +135,8 @@ export default {
&:deep(svg) {
fill: currentColor;
width: 20px;
height: 20px;
max-width: 20px;
max-height: 20px;
}
Expand Down

0 comments on commit 41433a2

Please sign in to comment.