24 lines
286 B
SCSS
24 lines
286 B
SCSS
label {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
textarea,
|
|
input[type="url"],
|
|
input[type="email"],
|
|
input[type="number"],
|
|
input[type="tel"],
|
|
input[type="text"] {
|
|
}
|
|
|
|
.searchBar {
|
|
display: grid;
|
|
width: 100%;
|
|
|
|
input {
|
|
padding: 10px;
|
|
font-size: 1.5rem;
|
|
border-radius: 20px;
|
|
}
|
|
}
|