Toggle paragraph indentation on and off.

- On by default
This commit is contained in:
Michael Rose
2014-07-31 14:44:23 -04:00
parent dd3dcdfbdf
commit f397374973
3 changed files with 9 additions and 5 deletions

View File

@ -112,10 +112,12 @@ blockquote {
// --------------------------------------------------
p {
margin: 0 0 $indent-var;
& + p {
//siblings indentation
text-indent: $indent-var;
margin-top: -($indent-var);
// sibling indentation
@if $paragraph-indent == true {
& + p {
text-indent: $indent-var;
margin-top: -($indent-var);
}
}
}