1
0
mirror of https://github.com/danbee/chess synced 2025-03-04 08:39:06 +00:00
chess/assets/css/components/_player-finder.scss

23 lines
531 B
SCSS

.opponent-finder__result {
border-bottom: 1px dotted $black;
border-bottom-left-radius: $base-border-radius;
border-bottom-right-radius: $base-border-radius;
border-left: 1px dotted $black;
border-right: 1px dotted $black;
margin-top: -$small-spacing;
padding: $small-spacing / 3;
}
.opponent-finder__result-item {
border-radius: $base-border-radius / 2;
cursor: pointer;
display: block;
padding: $small-spacing / 3 $base-spacing / 2;
&:hover,
&:focus {
background: $black;
color: $white;
}
}