Last active
September 11, 2015 10:17
-
-
Save amielucha/81323a44c946010e3929 to your computer and use it in GitHub Desktop.
Blockquote - add quotes
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
.blockquote { | |
p { | |
&:before { | |
content: '\201C'; // “ | |
} | |
&:after { | |
content: '\201D'; // ” | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment