mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-05 15:33:59 +00:00
27 lines
426 B
SCSS
27 lines
426 B
SCSS
.subtle {
|
|
aspect-ratio: 1;
|
|
height: 2rem;
|
|
height: 2rem;
|
|
display: grid;
|
|
place-content: center;
|
|
|
|
background: $gray-1050;
|
|
color: $blue-400;
|
|
border: 1px solid transparent;
|
|
border-radius: 3px;
|
|
|
|
&:hover:not(:disabled):not(:active) {
|
|
background: $gray-1000;
|
|
color: $blue-500;
|
|
}
|
|
|
|
&:active {
|
|
background: $gray-1100;
|
|
border-color: $gray-1250;
|
|
}
|
|
|
|
&:disabled {
|
|
background: $gray-1050;
|
|
}
|
|
}
|