diff --git a/assets/sass/_theme/_configuration.sass b/assets/sass/_theme/_configuration.sass index 2b573114d5d82046aed4153d4fcb107f54e8d703..9ec84e1012027245f7fcf36274d086cd46b6dfe2 100644 --- a/assets/sass/_theme/_configuration.sass +++ b/assets/sass/_theme/_configuration.sass @@ -9,6 +9,7 @@ $color-background: #FFFFFF !default $body-color: $color-text !default $body-background-color: $color-background !default $link-color: $color-text !default +$link-underline-offset: 6px !default // TYPOGRAPHY diff --git a/assets/sass/_theme/_utils.sass b/assets/sass/_theme/_utils.sass index 397a4a046b42053669f37886f51c2ffcb7dc71ba..b06c3f446966f87f685bd61dee1243c2795593c3 100644 --- a/assets/sass/_theme/_utils.sass +++ b/assets/sass/_theme/_utils.sass @@ -43,7 +43,7 @@ text-decoration-color: rgba($color, 0.3) text-decoration-line: underline text-decoration-thickness: 1px - text-underline-offset: 6px + text-underline-offset: $link-underline-offset transition: text-decoration-color .3s ease &:hover text-decoration-color: rgba($color, 1)