Created
April 6, 2017 05:03
-
-
Save mazipan/a5afb2c80b9979af316d855ad9222b1e 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
| .message { | |
| border: 1px solid #ccc; | |
| } | |
| .success { | |
| @extend .message; | |
| border-color: green; | |
| } | |
| .error { | |
| @extend .message; | |
| border-color: red; | |
| } | |
| .warning { | |
| @extend .message; | |
| border-color: yellow; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment