blob: 08ab76b5fc97db4752d851ad6c51291a421a3c57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
@scope (.__TextInput) {
:scope {
background-color: var(--surface);
color: var(--text);
height: 2.5rem;
padding: 0 0.5rem;
border: none;
border-bottom: 2px solid color-mix(in srgb, white 20%, var(--surface));
font-size: 1rem;
&:focus {
outline: 2px solid var(--primary);
outline-offset: -2px;
}
}
}
|