1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix: helm chart icon has incorrect size when app's window too small (#4166)

This commit is contained in:
Roman 2021-10-28 19:35:03 +03:00 committed by GitHub
parent 079976d703
commit 18e1c76b8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,12 +37,14 @@
} }
&.icon { &.icon {
display: flex; $iconSize: $unit * 3.5;
flex-grow: 0.3;
padding: 0; padding: 0;
display: flex;
flex-grow: 0;
flex-basis: $iconSize;
figure { figure {
$iconSize: $unit * 3.5;
width: $iconSize; width: $iconSize;
height: $iconSize; height: $iconSize;
border-radius: 50%; border-radius: 50%;