mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 02:13:48 +00:00
21 lines
355 B
SCSS
21 lines
355 B
SCSS
.input {
|
|
color: $gray-200;
|
|
border: 1px solid transparent;
|
|
border-radius: 0 0 8px 8px;
|
|
background-color: $gray-1200;
|
|
padding: 0 0.5rem;
|
|
font-size: 1rem;
|
|
height: 2rem;
|
|
outline: none;
|
|
|
|
&:hover {
|
|
background-color: $gray-1100;
|
|
}
|
|
|
|
&:focus {
|
|
background-color: $gray-1000;
|
|
color: $gray-50;
|
|
border: 1px solid $blue-500;
|
|
}
|
|
}
|