27 lines
386 B
CSS
27 lines
386 B
CSS
|
|
#formFilters {
|
|
display: none;
|
|
}
|
|
|
|
.container.save.button-cancel {
|
|
position: fixed;
|
|
top: 10vh;
|
|
right: 10vh;
|
|
}
|
|
|
|
.container-input {
|
|
margin: 0 auto;
|
|
}
|
|
label {
|
|
font-weight: bold;
|
|
}
|
|
.container-input input {
|
|
max-width: 250px;
|
|
}
|
|
|
|
input.dirty,
|
|
textarea.dirty,
|
|
select.dirty {
|
|
border-color: var(--primary-color);
|
|
background-color: var(--background-color-2);
|
|
} |