42 lines
618 B
SCSS
42 lines
618 B
SCSS
/*
|
|
* Inputs
|
|
* @see https://designsystem.digital.gov/components/form-controls/
|
|
* @source https://github.com/uswds/uswds/blob/develop/src/stylesheets/elements/_inputs.scss
|
|
*/
|
|
|
|
select {
|
|
border-radius: 0;
|
|
-webkit-appearance: none;
|
|
}
|
|
|
|
.usa-date-input label {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.input-label {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.usa-fieldset-inputs {
|
|
margin-top: 2.25rem;
|
|
|
|
label:first-child {
|
|
padding-bottom: 0.5rem;
|
|
}
|
|
}
|
|
|
|
.usa-search {
|
|
padding-top: 2px;
|
|
margin-right: 2rem;
|
|
|
|
input[type=search] {
|
|
height: 4.4rem;
|
|
font-size: 1.7rem;
|
|
color: $color-black;
|
|
}
|
|
|
|
button {
|
|
min-height: 4.4rem;
|
|
}
|
|
|
|
} |