From 28036aae75fa417661a24130d5916db34f236fff Mon Sep 17 00:00:00 2001 From: HonzaKirchner Date: Wed, 13 Nov 2024 09:55:57 +0100 Subject: [PATCH 1/3] fix: add spacing between header and flags --- apify-docs-theme/src/theme/custom.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apify-docs-theme/src/theme/custom.css b/apify-docs-theme/src/theme/custom.css index 36bde82280..8660a47d82 100644 --- a/apify-docs-theme/src/theme/custom.css +++ b/apify-docs-theme/src/theme/custom.css @@ -606,6 +606,10 @@ article .card h2 { user-select: none; } +.tsd-flag-group { + margin-right: 0 .5rem; +} + .tsd-panel .tsd-flag { color: #f2f3fb; } From 5c9efc3a107b023861f959be2be46bbe6f23048f Mon Sep 17 00:00:00 2001 From: HonzaKirchner Date: Wed, 13 Nov 2024 09:58:26 +0100 Subject: [PATCH 2/3] fix --- apify-docs-theme/src/theme/custom.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apify-docs-theme/src/theme/custom.css b/apify-docs-theme/src/theme/custom.css index 8660a47d82..295ec72eb0 100644 --- a/apify-docs-theme/src/theme/custom.css +++ b/apify-docs-theme/src/theme/custom.css @@ -607,7 +607,7 @@ article .card h2 { } .tsd-flag-group { - margin-right: 0 .5rem; + margin: 0 .5rem; } .tsd-panel .tsd-flag { From cb9110ff0c8e33a4d097e7716e54e384db38d1fe Mon Sep 17 00:00:00 2001 From: HonzaKirchner Date: Mon, 18 Nov 2024 13:01:30 +0100 Subject: [PATCH 3/3] margin applied to the right classes --- apify-docs-theme/src/theme/custom.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apify-docs-theme/src/theme/custom.css b/apify-docs-theme/src/theme/custom.css index 295ec72eb0..15d525c776 100644 --- a/apify-docs-theme/src/theme/custom.css +++ b/apify-docs-theme/src/theme/custom.css @@ -606,8 +606,9 @@ article .card h2 { user-select: none; } -.tsd-flag-group { - margin: 0 .5rem; +.tsd-panel-header .tsd-flag-group { + margin-right: .5rem; + margin-left: .5rem; } .tsd-panel .tsd-flag {