From 6e9b58a91316b709c773d24e98145577f2f665e9 Mon Sep 17 00:00:00 2001 From: Marco Biedermann Date: Thu, 3 Oct 2019 23:28:09 +0200 Subject: [PATCH 1/3] fix: space Remove space before comma --- src/parts/_typography.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parts/_typography.css b/src/parts/_typography.css index 6997b13..6ccdb03 100644 --- a/src/parts/_typography.css +++ b/src/parts/_typography.css @@ -42,7 +42,7 @@ q:after { content: none; } -blockquote , q{ +blockquote, q{ border-left: 4px solid var(--focus); margin: 1.5em 0em; padding: 0.5em 1em; From 92ae2e25175fffed3d5a0cfaaa53fc616ffb0bb8 Mon Sep 17 00:00:00 2001 From: Marco Biedermann Date: Thu, 3 Oct 2019 23:31:06 +0200 Subject: [PATCH 2/3] fix: pseudo elements Fix pseudo element syntax --- src/parts/_typography.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/parts/_typography.css b/src/parts/_typography.css index 6ccdb03..dcdc2cb 100644 --- a/src/parts/_typography.css +++ b/src/parts/_typography.css @@ -34,11 +34,11 @@ th { font-weight: 600; } -q:before { +q::before { content: none; } -q:after { +q::after { content: none; } From 3ee2f57946306e4972877b61d9a51f043f6da389 Mon Sep 17 00:00:00 2001 From: Marco Biedermann Date: Thu, 3 Oct 2019 23:32:25 +0200 Subject: [PATCH 3/3] fix: space Add missing space after selector --- src/parts/_typography.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parts/_typography.css b/src/parts/_typography.css index dcdc2cb..d465c84 100644 --- a/src/parts/_typography.css +++ b/src/parts/_typography.css @@ -42,7 +42,7 @@ q::after { content: none; } -blockquote, q{ +blockquote, q { border-left: 4px solid var(--focus); margin: 1.5em 0em; padding: 0.5em 1em;