mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
21 lines
298 B
SCSS
21 lines
298 B
SCSS
@import '../../../../styles/variables';
|
|
|
|
.box {
|
|
border-left: 3px solid white;
|
|
cursor: pointer;
|
|
* {
|
|
cursor: pointer;
|
|
}
|
|
&:hover {
|
|
border-left-color: #d198d4;
|
|
background: #ccc;
|
|
}
|
|
&:focus,
|
|
&:active {
|
|
background: #d198d4;
|
|
}
|
|
&.active {
|
|
border-left-color: yellowgreen !important;
|
|
}
|
|
}
|