From db8b3aa8eda9a3b9e94d0625b0a943e81fc10634 Mon Sep 17 00:00:00 2001 From: Andrew Hosgood Date: Wed, 17 Jan 2024 11:17:51 +0000 Subject: [PATCH] Add more space between text and chevron in heading links (#74) --- CHANGELOG.md | 3 +++ src/nationalarchives/utilities/_typography.scss | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bdb85f0..f2efb4b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added ### Changed + +- Added more space between the text and chevron in a heading link + ### Deprecated ### Removed ### Fixed diff --git a/src/nationalarchives/utilities/_typography.scss b/src/nationalarchives/utilities/_typography.scss index 3adeedfe..815ce0ae 100644 --- a/src/nationalarchives/utilities/_typography.scss +++ b/src/nationalarchives/utilities/_typography.scss @@ -223,7 +223,7 @@ small { display: inline-block; &::after { - padding-left: 0.25rem; + padding-left: 0.5rem; display: inline-block; @@ -234,7 +234,7 @@ small { &:hover { &::after { - padding-left: 0.5rem; + padding-left: 0.75rem; } } }