1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2025-03-11 02:57:39 +00:00
pds-2021-g2-nest/nest_frontend/components/base/Input.module.css

23 lines
361 B
CSS
Raw Normal View History

2021-04-21 03:57:18 +02: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);
2021-04-21 18:58:14 +02:00
font-family: var(--font-regular);
2021-04-22 18:19:11 +02:00
2021-04-29 16:17:22 +02:00
width: 100%;
2021-04-21 03:57:18 +02:00
}
.Input:focus {
outline: 0;
2021-04-21 03:57:18 +02:00
color: var(--fg-field-on);
background-color: var(--bg-field-on);
2021-04-22 18:26:45 +02:00
}