Toggle paragraph indentation on and off.
- On by default
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user