Skip to content

Commit

Permalink
fix(core): invalid svg alignments in safari (#5588)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode authored Oct 11, 2023
1 parent fab417e commit 6360ab3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion projects/core/components/svg/svg.style.less
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,16 @@
fill: transparent;
stroke: transparent;
font-size: 1rem;

::ng-deep svg:not(.t-svg) {
width: inherit;
height: inherit;
}
}

.t-src {
display: flex;
width: 100%;
width: inherit;
height: 100%;
align-items: center;
justify-content: center;
Expand Down

0 comments on commit 6360ab3

Please sign in to comment.