Last active
July 27, 2020 20:41
-
-
Save AlfieDarko/ac498482f80ece1367361076a3be1325 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 component */ | |
.checkout-form { | |
// .. | |
} | |
/* Element that depends upon the block */ | |
.checkout-form__title { | |
// .. | |
} | |
.checkout-form__input { | |
// .. | |
} | |
.checkout-form__button { | |
// .. | |
} | |
/* Modifier that changes the style of the block */ | |
.checkout-form--darkmode { | |
// ... | |
} | |
/* Modifier that changes the style of the element */ | |
.checkout-form__input--big { | |
// ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment