mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
17 lines
313 B
SCSS
17 lines
313 B
SCSS
.move-list {
|
|
grid-area: move-list;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.move-list__line-number {
|
|
color: mix($background-color, $foreground-color);
|
|
font-variant-numeric: tabular-nums;
|
|
font-feature-settings: "tnum";
|
|
}
|
|
|
|
.move-list__header--white,
|
|
.move-list__move--white,
|
|
.move-list__line-number {
|
|
text-align: right;
|
|
}
|