Last active
January 18, 2017 13:06
-
-
Save matyax/af0c84be06094717f19c3913cf337507 to your computer and use it in GitHub Desktop.
Form classes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import './theme.scss'; | |
.er-form { | |
} | |
.er-form__header { | |
} | |
.er-form__title { | |
} | |
.er-form__body { | |
} | |
.er-form__base-input { | |
} | |
.er-form__text-input { | |
@extend .er-form__base-input; | |
&.er-form__text-input--disabled { | |
} | |
} | |
.er-form__label { | |
&.er-form__label--radio { | |
} | |
} | |
.er-form__select { | |
&.er-form__select--disabled { | |
} | |
} | |
.er-form__textarea { | |
@extend .er-form__base-input; | |
} | |
.er-form__required-mark { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment