From 54e4494a1d016c6ee680fae86f9fdcf1e71984fe Mon Sep 17 00:00:00 2001 From: David Oliver Date: Tue, 28 Jan 2025 20:44:24 +0100 Subject: [PATCH] Fix top-heading action icon spacing (#2082) --- assets/css/content/general.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/assets/css/content/general.css b/assets/css/content/general.css index afa6572ad..f2866591d 100644 --- a/assets/css/content/general.css +++ b/assets/css/content/general.css @@ -38,9 +38,12 @@ @container content (width > 600px) { .content-inner .heading-with-actions.top-heading { flex-wrap: nowrap; - gap: 32px; align-items: flex-start; + & h1 { + padding-right: 32px; /* ensures space between heading text and icon(s) */ + } + & .icon-action { padding-top: 1.7rem; /* vertically align with x-height of first line of heading */ }