File size: 315 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
@import "@wordpress/base-styles/breakpoints";
@import "../components";
.email-format-input {
&.form-fieldset {
@extend %form-fieldset;
}
.form-label {
@extend %form-label;
}
.form-select {
@extend %form-select;
width: 457px;
@media screen and (max-width: $break-small) {
width: 100%;
}
}
}
|