mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
21 lines
379 B
SCSS
21 lines
379 B
SCSS
.RoleDetails {
|
|
.rule {
|
|
display: grid;
|
|
grid-template-columns: min-content auto;
|
|
gap: $margin;
|
|
|
|
border: 1px solid $borderColor;
|
|
border-radius: $radius;
|
|
padding: $padding * 1.5;
|
|
|
|
> .name {
|
|
color: $textColorSecondary;
|
|
text-align: right;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
&:not(:last-child) {
|
|
margin-bottom: $margin * 2;
|
|
}
|
|
}
|
|
} |