From 80a4ad95aa253873ddaf7067e9a861f52e454278 Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Wed, 30 Oct 2024 16:28:41 +0100 Subject: [PATCH] Fix display of anchor icons --- Cargo.toml | 2 +- assets/ibis.css | 10 +++++++--- assets/tailwind.css | 4 ---- 3 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 assets/tailwind.css diff --git a/Cargo.toml b/Cargo.toml index 1aaad02..60621e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -120,7 +120,7 @@ assets-dir = "assets" bin-features = ["ssr"] lib-features = ["hydrate"] lib-profile-release = "wasm-release" -tailwind-input-file = "assets/tailwind.css" +tailwind-input-file = "assets/ibis.css" tailwind-config-file = "tailwind.config.js" [lib] diff --git a/assets/ibis.css b/assets/ibis.css index b21da7d..966c0f2 100644 --- a/assets/ibis.css +++ b/assets/ibis.css @@ -1,3 +1,7 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + html { height: 100%; width: 100%; @@ -48,9 +52,9 @@ pre { margin: 5px; } -@tailwind base; -@tailwind components; -@tailwind utilities; +.anchor svg { + display: inline !important; +} @layer base { h1 { diff --git a/assets/tailwind.css b/assets/tailwind.css deleted file mode 100644 index 8d6981e..0000000 --- a/assets/tailwind.css +++ /dev/null @@ -1,4 +0,0 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; -@tailwind typography;