Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thingsym/hugo-theme-techdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthingsym <thingsym@gmail.com>2021-11-21 10:35:36 +0300
committerthingsym <thingsym@gmail.com>2021-11-21 11:59:39 +0300
commit0afc1c51830052644d523ccc27ec448381e88a7e (patch)
treededa0ac146b6c517565d560f1f25e29219f4b877
parent3ff336b938f46af8e2bab0830c5df3b41a634447 (diff)
fix: fix heading styles
-rw-r--r--src/scss/foundation/_element.scss12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/scss/foundation/_element.scss b/src/scss/foundation/_element.scss
index 3444edf..d5bc1ae 100644
--- a/src/scss/foundation/_element.scss
+++ b/src/scss/foundation/_element.scss
@@ -50,17 +50,17 @@ h3 {
line-height: calc-stack.line-height(variable.$default-line-space, 160%);
}
h4 {
- font-size: 140%;
- line-height: calc-stack.line-height(variable.$default-line-space, 140%);
+ font-size: 125%;
+ line-height: calc-stack.line-height(variable.$default-line-space, 125%);
}
h5 {
- font-size: 120%;
- line-height: calc-stack.line-height(variable.$default-line-space, 120%);
-}
-h6 {
font-size: 100%;
line-height: calc-stack.line-height(variable.$default-line-space, 100%);
}
+h6 {
+ font-size: 80%;
+ line-height: calc-stack.line-height(variable.$default-line-space, 80%);
+}
a {
color: var(--custom-link-text-color, variable.$default-link-text-color);