|
@@ -132,11 +132,19 @@ blockquote {
|
|
|
|
|
|
p {
|
|
p {
|
|
margin: 0 0 $indent-var;
|
|
margin: 0 0 $indent-var;
|
|
- // sibling indentation
|
|
|
|
|
|
+ text-align: justify;
|
|
|
|
+ -webkit-hyphens: auto;
|
|
|
|
+ -ms-hyphens: auto;
|
|
|
|
+ -moz-hyphens: auto;
|
|
|
|
+ hyphens: auto;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.post p {
|
|
@if $paragraph-indent == true {
|
|
@if $paragraph-indent == true {
|
|
& {
|
|
& {
|
|
text-indent: $indent-var;
|
|
text-indent: $indent-var;
|
|
}
|
|
}
|
|
|
|
+ // sibling indentation
|
|
& + p {
|
|
& + p {
|
|
text-indent: $indent-var;
|
|
text-indent: $indent-var;
|
|
margin-top: -($indent-var);
|
|
margin-top: -($indent-var);
|