Spaces:
Runtime error
Runtime error
File size: 340 Bytes
8fd7a1d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
@import "../../css/colors.css";
.green-flag {
width: 2rem;
height: 2rem;
padding: 0.375rem;
border-radius: 0.25rem;
user-select: none;
user-drag: none;
cursor: pointer;
}
.green-flag:hover {
background-color: $looks-light-transparent;
}
.green-flag.is-active {
background-color: $looks-transparent;
}
|