commit 9c0e4da0d9ed5b7e58d6795a487fdbe651a11bec
parent 3544b46ca917de42b17dcb039e39a68d5ed05d31
Author: massi <mdsiboldi@gmail.com>
Date: Fri, 2 Aug 2024 06:17:27 -0700
add explicit height/width incase css doesnt load
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/site.clj b/src/site.clj
@@ -65,7 +65,7 @@
(or (map? thing) (keyword? thing)))
(def svg-arrow
- [:svg {:viewBox "0 0 16 16" :id "svg-arrow"}
+ [:svg {:height "1em" :width "1em" :viewBox "0 0 16 16" :id "svg-arrow"}
[:path {:style "fill:var(--fg)" :d "M 9.3370298,4.2576328 8.9740248,4.8872198 13.221,7.329 H 0.72416487 V 8.032 H 13.221 l -4.2469782,2.442097 0.363005,0.629587 5.9300332,-3.4230256 z"}]])
(defn header [& crumbs]