22 lines
271 B
SCSS
22 lines
271 B
SCSS
.searchForm {
|
|
text-align: center;
|
|
padding-top: 1em;
|
|
padding-bottom: 0.5em;
|
|
width: fit-content;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
|
|
span {
|
|
user-select: none;
|
|
}
|
|
|
|
.error {
|
|
color: red;
|
|
}
|
|
|
|
button {
|
|
width: 100%;
|
|
margin-top: 1em;
|
|
}
|
|
}
|