1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-10-16 20:17:25 +00:00
pds-2021-g2-nest/nest_frontend/components/base/Input.module.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);
}