From 77b2b2bfba90065df5c632307ba6ed2a181ef186 Mon Sep 17 00:00:00 2001 From: Bram Borggreve Date: Wed, 11 Sep 2024 17:18:21 +0100 Subject: [PATCH] fix: prevent svgs from wrapping Signed-off-by: Bram Borggreve --- src/css/custom.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/css/custom.css b/src/css/custom.css index 52f732fa8d..0ef8d98d7f 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -315,3 +315,8 @@ main a { animation: fadeIn 1s forwards; animation-delay: 8s; /* Delay to start after image after code block fades in */ } + +.dropdown svg, +.footer svg { + display: inline-block; +} \ No newline at end of file