mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Fix quota entries layout in Add Resouce Quota dialog (#4789)
Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
parent
11c78414a0
commit
576135f723
@ -9,19 +9,23 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.quota-entries {
|
.quota-entries {
|
||||||
margin: -$margin * 0.5;
|
display: flex;
|
||||||
|
gap: 8px;
|
||||||
|
margin-left: -1px;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
&:empty {
|
&:empty {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.quota {
|
.quota {
|
||||||
--flex-gap: #{$padding};
|
|
||||||
border: 1px solid var(--halfGray);
|
border: 1px solid var(--halfGray);
|
||||||
border-radius: $radius;
|
border-radius: $radius;
|
||||||
margin: $margin * 0.5;
|
|
||||||
padding: $padding * 0.5 $padding;
|
padding: $padding * 0.5 $padding;
|
||||||
transition: all 150ms ease;
|
transition: all 150ms ease;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8px;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
box-shadow: inset 0 0 0 1px var(--borderColor);
|
box-shadow: inset 0 0 0 1px var(--borderColor);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user