Created
January 8, 2018 12:11
-
-
Save hustKiwi/fe3a62fa91aed3a2f9a28d68fadf9880 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// Block | |
.ipifiy-field { | |
display: flex; | |
// Element | |
&__label { | |
width: 8em; | |
} | |
&__input { | |
flex: 1; | |
} | |
// Modifier | |
&--invalid { | |
& { | |
border: 1px solid red; | |
} | |
&__input { | |
color: red; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment