Jelajahi Sumber

Skatepark: Apply paragraph styles only to middle column

Sarah Norris 3 tahun lalu
induk
melakukan
cd1722e631

+ 4 - 4
skatepark/assets/theme.css

@@ -356,14 +356,14 @@
 	margin: 0 0 calc( var(--wp--custom--margin--vertical) * 0.89) 0;
 }
 
-.paragraph-with-quote p {
-	margin: calc( var(--wp--custom--margin--baseline) * 1.55) 0 0 0;
-}
-
 .paragraph-with-quote div:nth-child(2) > p:first-of-type {
 	text-indent: 9.15em;
 }
 
+.paragraph-with-quote div:nth-child(2) p {
+	margin: calc( var(--wp--custom--margin--baseline) * 1.55) 0 0 0;
+}
+
 h1.is-style-skatepark-heading-border, h2.is-style-skatepark-heading-border, h3.is-style-skatepark-heading-border, h4.is-style-skatepark-heading-border, h5.is-style-skatepark-heading-border, h6.is-style-skatepark-heading-border {
 	display: inline-block;
 	border-top: 2px solid var(--wp--custom--color--primary);

+ 4 - 4
skatepark/sass/block-patterns/_paragraph-with-quote.scss

@@ -3,13 +3,13 @@
         margin: 0 0 calc( var(--wp--custom--margin--vertical) * 0.89 ) 0;
     }
 
-    p {
-        margin: calc( var(--wp--custom--margin--baseline) * 1.55 ) 0 0 0;
-    }
-
     div:nth-child(2) {    
         > p:first-of-type {
             text-indent: 9.15em;
         }
+
+        p{
+            margin: calc( var(--wp--custom--margin--baseline) * 1.55 ) 0 0 0;
+        }
     }
 }