1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/code/frontend/src/components/Input.module.css

18 lines
377 B
CSS
Raw Normal View History

2021-04-21 01:57:18 +00:00
.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);
}
.Input:focus {
outline: 0; /* TODO: Questo è sconsigliato dalle linee guida sull'accessibilità! */
color: var(--fg-field-on);
background-color: var(--bg-field-on);
}