From ae816782f0ce916391cb883b2008ec11e7ce22eb Mon Sep 17 00:00:00 2001
From: trwnh
Date: Thu, 25 Apr 2019 21:40:39 -0500
Subject: [PATCH 1/2] override font-weight-lighter to 300
200 is unreadable
---
resources/assets/sass/_variables.scss | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/resources/assets/sass/_variables.scss b/resources/assets/sass/_variables.scss
index 46639fe6b..290c47165 100644
--- a/resources/assets/sass/_variables.scss
+++ b/resources/assets/sass/_variables.scss
@@ -5,6 +5,7 @@ $body-bg: #f5f8fa;
// Typography
$font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
$font-size-base: 0.9rem;
+$font-weight-lighter: 300;
$line-height-base: 1.6;
$font-size-lg: ($font-size-base * 1.25);
@@ -19,4 +20,4 @@ $custom-control-description-disabled-color: #868e96;
$white: white;
$theme-colors: (
'primary': #08d
-);
\ No newline at end of file
+);
From bd537391dfc940f61e21fbddacfe351cb36a14b4 Mon Sep 17 00:00:00 2001
From: trwnh
Date: Thu, 25 Apr 2019 21:45:43 -0500
Subject: [PATCH 2/2] add lighter override to custom.scss to take effect
---
resources/assets/sass/custom.scss | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/resources/assets/sass/custom.scss b/resources/assets/sass/custom.scss
index 7238c929a..6b447ad1f 100644
--- a/resources/assets/sass/custom.scss
+++ b/resources/assets/sass/custom.scss
@@ -132,6 +132,10 @@ body, button, input, textarea {
background-color: rgba(0,0,0,0.5);
}
+.font-weight-lighter {
+ font-weight: 300 !important
+}
+
.font-weight-ultralight {
font-weight: 200 !important;
}