Remove scale for Icons (#757)

Signed-off-by: Alexander Platov <sas_lord@mail.ru>
This commit is contained in:
Alexander Platov
2022-01-04 10:05:23 +01:00
committed by GitHub
parent b92e34ff88
commit a7699648dd
22 changed files with 49 additions and 85 deletions
@@ -25,8 +25,8 @@
<div class="flex-col popup">
<div class="flex-row-center red-color menu-item" on:click={() => { dispatch('close'); onDelete() }}>
<div class="icon">
<Delete size={'medium'} />
<div class="mr-3">
<Delete size={'small'} />
</div>
<div class="flex-grow"><Label label={task.string.Delete} /></div>
</div>
@@ -49,11 +49,6 @@
border-radius: .5rem;
cursor: pointer;
.icon {
margin-right: .75rem;
transform-origin: center center;
transform: scale(.75);
}
&:hover { background-color: var(--theme-button-bg-hovered); }
}
</style>