Skip to content

Commit 059e60f

Browse files
committed
fix cropped icons quoid#150
1 parent fb6dbe0 commit 059e60f

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

src/popup/App.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,11 +363,11 @@
363363
}
364364
365365
.header :global(button:nth-of-type(1) svg) {
366-
width: 75%;
366+
transform: scale(0.75);
367367
}
368368
369369
.header :global(button:nth-of-type(2) svg) {
370-
width: 90%;
370+
transform: scale(0.9);
371371
}
372372
373373
.error {

src/shared/Components/IconButton.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@
4242
height: auto;
4343
opacity: 0.75;
4444
pointer-events: none; /* prevent svg from triggering click events */
45-
width: 66.7%;
45+
transform: scale(0.667);
46+
width: 100%;
4647
}
4748
4849
@media (hover: hover) {

0 commit comments

Comments
 (0)