From 7ae3202a6afbe69f2809937bc0f023c9bb9418f7 Mon Sep 17 00:00:00 2001 From: beeman Date: Wed, 11 Sep 2024 17:37:57 +0100 Subject: [PATCH] fix: prevent svgs from wrapping (#157) Signed-off-by: Bram Borggreve Co-authored-by: Matteo Collina --- src/css/custom.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/css/custom.css b/src/css/custom.css index 1576c4530f..918d700dc9 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -316,7 +316,12 @@ main a { animation-delay: 8s; /* Delay to start after image after code block fades in */ } +.dropdown svg, +.footer svg { + display: inline-block; +} + article ul { list-style-type: disc; padding-left: var(--ifm-list-left-padding) !important; -} +} \ No newline at end of file