mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
22 lines
361 B
CSS
22 lines
361 B
CSS
.Input {
|
|
border-radius: 25px;
|
|
border-width: 0;
|
|
|
|
min-height: 28px;
|
|
padding: 2px 10px;
|
|
margin: 2px;
|
|
|
|
color: var(--fg-field-off);
|
|
background-color: var(--bg-field-off);
|
|
|
|
font-family: var(--font-regular);
|
|
|
|
width: 100%;
|
|
}
|
|
|
|
.Input:focus {
|
|
outline: 0;
|
|
|
|
color: var(--fg-field-on);
|
|
background-color: var(--bg-field-on);
|
|
}
|