16 lines
188 B
SCSS
16 lines
188 B
SCSS
@use '../styles/variables' as v;
|
|
|
|
.row {
|
|
&:not(:last-child) {
|
|
border-bottom: 1px solid v.$color-light-grey;
|
|
}
|
|
}
|
|
|
|
.cell {
|
|
padding: 4px 0;
|
|
|
|
&.key {
|
|
padding-right: 8px;
|
|
}
|
|
}
|