mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* generating css-vars * convert all global / theme sass vars to css vars with available default theme colors * added missing colors to dark lens theme
22 lines
392 B
SCSS
22 lines
392 B
SCSS
.RoleDetails {
|
|
.rule {
|
|
display: grid;
|
|
grid-template-columns: min-content auto;
|
|
gap: $margin;
|
|
|
|
border: 1px solid var(--borderColor);
|
|
border-radius: $radius;
|
|
padding: $padding * 1.5;
|
|
|
|
> .name {
|
|
color: var(--textColorSecondary);
|
|
text-align: right;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
&:not(:last-child) {
|
|
margin-bottom: $margin * 2;
|
|
}
|
|
}
|
|
}
|