1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 13:04:19 +00:00
pds-2021-g2-nest/nest_frontend/components/base/TextArea.module.css

32 lines
No EOL
527 B
CSS

.TextArea {
/* Remember the margin! */
height: calc(100% - 4px);
width: calc(100% - 4px);
border-radius: 25px;
border-width: 0;
min-height: 28px;
padding: 10px 20px;
margin: 2px;
color: var(--fg-field-off);
background-color: var(--bg-field-off);
font-family: var(--font-regular);
}
.TextArea:focus {
outline: 0;
color: var(--fg-field-on);
background-color: var(--bg-field-on);
}
.TextAreaResizable {
resize: vertical;
}
.TextAreaNoResize {
resize: none;
}