1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/dashboard/client/components/+config-resource-quotas/add-quota-dialog.scss
Jari Kolehmainen db4dca3005 lens app source code
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
2020-03-15 09:46:21 +02:00

38 lines
612 B
SCSS

.AddQuotaDialog {
.quota-select {
flex-basis: 55%;
}
.quota-entries {
margin: -$margin / 2;
&:empty {
display: none;
}
.quota {
--flex-gap: #{$padding};
border: 1px solid $halfGray;
border-radius: $radius;
margin: $margin / 2;
padding: $padding / 2 $padding;
transition: all 150ms ease;
&:hover {
box-shadow: inset 0 0 0 1px $borderColor;
}
.name {
font-weight: $font-weight-bold;
}
.value {
color: $contentColor;
}
.Icon:hover {
color: black;
}
}
}
}