46 lines
632 B
SCSS
46 lines
632 B
SCSS
fieldset {
|
|
border: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
legend {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 769px) {
|
|
.form-group__input {
|
|
grid-column: 2;
|
|
}
|
|
}
|
|
|
|
[uw-auto-submit-button][type="submit"] {
|
|
animation: fade-in 500ms ease-in-out backwards;
|
|
animation-delay: 500ms;
|
|
}
|
|
|
|
@keyframes fade-in {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.hidden {
|
|
visibility: hidden !important;
|
|
height: 0 !important;
|
|
width: 0 !important;
|
|
opacity: 0 !important;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
min-width: 0 !important;
|
|
}
|
|
|
|
.select--pagesize {
|
|
width: 5em;
|
|
min-width: 75px;
|
|
}
|
|
|
|
.label-pagesize {
|
|
margin-right: 13px;
|
|
}
|