summaryrefslogtreecommitdiff
path: root/src/components/TextInput.css
blob: bb044153b079fcac0f82b03e1da139214353ee72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@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);
			border-bottom: none;
			margin-bottom: 2px;
		}
	}
}