scratch-www/src/components/forms/select.scss

31 lines
559 B
SCSS
Raw Normal View History

@import "../../colors";
2016-06-23 07:27:43 -04:00
@import "../../frameless";
.select {
2016-06-23 07:27:43 -04:00
label {
font-weight: 500;
}
}
select {
margin: .8rem 0;
border: 1px solid $active-gray;
border-radius: 5px;
background: $ui-light-gray url("../../../static/images/dropdown.png") no-repeat right center;
background-size: 1rem 1rem;
width: 100%;
height: 3rem;
text-indent: 1rem;
font-size: .875rem;
appearance: none;
&:focus {
outline: none;
}
> option {
background-color: $ui-white;
width: 100%;
}
}