Last active
December 26, 2015 05:59
-
-
Save andycole/7104588 to your computer and use it in GitHub Desktop.
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
//Block | |
.notification-popup { | |
width:100%; | |
height:100px; | |
} | |
//Element | |
.notification-popup_content { | |
color:black; | |
} | |
//Element child | |
.notification-popup_content_closebtn { | |
width:50px; | |
height:50px; | |
} | |
//Modifier | |
.notification-popup--error { | |
@extend .notifcation-popup; | |
border: 1px solid red | |
background-color: pink; | |
color:#fff; | |
} | |
<!-- example --> | |
<div class="notification-popup"> | |
Content | |
<div class="notification-popup_content"> | |
<div class="notification-popup_content_closebtn"></div> | |
Lovely content all goes in here | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment