From 2ae91bdbe2dff517009f5a34ed348f26632db077 Mon Sep 17 00:00:00 2001 From: David Cook Date: Thu, 1 Jun 2023 14:33:37 +1000 Subject: [PATCH] Use variable for font size reset The current value is 13px already, but I'd like to experiment changing this. I'm not sure if we even need the reset, but am not delving into that right now. --- app/webpacker/css/admin/shared/typography.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/webpacker/css/admin/shared/typography.scss b/app/webpacker/css/admin/shared/typography.scss index 91918daba5..0b8a3707f2 100644 --- a/app/webpacker/css/admin/shared/typography.scss +++ b/app/webpacker/css/admin/shared/typography.scss @@ -1,6 +1,6 @@ // Base //-------------------------------------------------------------- -body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td { margin: 0; padding: 0; font-size: 13px; } +body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td { margin: 0; padding: 0; font-size: $body-font-size; } body { font-family: $base-font-family;