mirror of
https://github.com/lichess-org/lila.git
synced 2026-05-26 13:51:00 +00:00
21 lines
292 B
SCSS
21 lines
292 B
SCSS
%result-box {
|
|
.result {
|
|
@extend %box-radius;
|
|
|
|
flex: 0 0 auto;
|
|
padding: 0.1em 0.6em;
|
|
background: $c-font-dimmer;
|
|
text-shadow: none;
|
|
color: $c-over;
|
|
font-weight: bold;
|
|
}
|
|
|
|
good.result {
|
|
background: $c-good;
|
|
}
|
|
|
|
bad.result {
|
|
background: $c-bad;
|
|
}
|
|
}
|