This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-11-14
Channels
- # aleph (10)
- # announcements (2)
- # beginners (228)
- # calva (18)
- # cider (6)
- # clara (5)
- # cljdoc (25)
- # cljs-dev (22)
- # clojure (78)
- # clojure-dev (30)
- # clojure-europe (2)
- # clojure-finland (1)
- # clojure-italy (32)
- # clojure-nl (21)
- # clojure-uk (126)
- # clojurescript (34)
- # cursive (5)
- # data-science (2)
- # datascript (2)
- # datomic (26)
- # defnpodcast (1)
- # emacs (5)
- # figwheel (5)
- # figwheel-main (3)
- # fulcro (14)
- # graphql (5)
- # jobs (1)
- # keechma (4)
- # nrepl (5)
- # off-topic (35)
- # onyx (3)
- # pedestal (12)
- # random (1)
- # re-frame (35)
- # reagent (8)
- # reitit (20)
- # remote-jobs (5)
- # ring-swagger (20)
- # shadow-cljs (166)
- # sql (43)
- # vim (6)
- # yada (15)
Is there any way to render an inline <style> element in reagent? For example, the demo SVG on this MDN page? https://developer.mozilla.org/en-US/docs/Web/SVG/Element/text
@jlfischer Never tried it, but this should work ....
[:style ".small { font: italic }\n .heavy { ....}"]
@jlfischer @U051MTYAB
With garden
it looks great
(def styles
[[:.small {:font-size "italic"}]
[:.heavy {:font-weight "600"}])
[:style (garden.core/css styles)]
https://github.com/noprompt/gardenYou can use [:span (clojure.string/join "\n" vec-of-css-lines)]
if it makes you feel better :-)