This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-09-27
Channels
- # announcements (1)
- # asami (10)
- # babashka (12)
- # beginners (26)
- # biff (4)
- # calva (42)
- # cider (1)
- # clj-commons (2)
- # cljs-dev (2)
- # clojure (179)
- # clojure-dev (2)
- # clojure-europe (45)
- # clojure-norway (16)
- # clojure-uk (3)
- # clojurescript (5)
- # datahike (1)
- # datascript (2)
- # events (3)
- # exercism (1)
- # fulcro (13)
- # funcool (3)
- # graalvm (23)
- # helix (3)
- # honeysql (1)
- # hyperfiddle (3)
- # lsp (51)
- # malli (2)
- # off-topic (27)
- # portal (18)
- # reagent (3)
- # reitit (3)
- # releases (8)
- # sci (5)
- # shadow-cljs (11)
- # xtdb (5)
Using shadow-css, is it possible to do things one would in TW do in tailwind.config.js
? Namely: redefine colors, default spacing sizes etc? I see that those are defined in clj and edn files, can we get at them or override them?
just look at the default build state. e.g. (tap> (shadow.css.build/start))
and look at in inspect http://localhost:9630/inspect
note that start
already generates all the aliases, you can just call init
and do the steps yourself. so if you want to adjust spacing do that before calling generate-spacing-aliases
for example
how do you properly type hint ..
forms?
(.addChild ^js (.-stage app) sprite) ;; ok
(.. app -stage (addChild sprite)) ;; warning cannot infer type
if electric project make sure to test in a clojure context because electric compiler still has a few remaining bugs related to propagating the type hints