mirror of
https://github.com/strapi/strapi.git
synced 2025-08-18 05:37:10 +00:00
30 lines
527 B
SCSS
30 lines
527 B
SCSS
.inputSelect { /* stylelint-disable */
|
|
font-size: 1.3rem;
|
|
font-family: Lato;
|
|
|
|
> label {
|
|
text-transform: capitalize;
|
|
margin-bottom: .8rem;
|
|
font-weight: 500;
|
|
}
|
|
> select {
|
|
font-size: 1.3rem;
|
|
font-family: Lato;
|
|
color: #333740;
|
|
height: 3.5rem!important;
|
|
border-radius: 0rem!important;
|
|
border: 1px solid #E3E9F3;
|
|
padding-left: 1rem;
|
|
}
|
|
}
|
|
|
|
.requiredClass {
|
|
> label:after {
|
|
color: red;
|
|
font-family: Lato;
|
|
font-weight: bold;
|
|
margin-left: 5px;
|
|
content: "*";
|
|
}
|
|
}
|