We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce2259f commit 0af1291Copy full SHA for 0af1291
src/lambdaisland/ornament.cljc
@@ -140,7 +140,7 @@
140
141
:always
142
(update :garden #(comp process-rule %)))))
143
- components)
+ (flatten components))
144
:colors (into (empty colors)
145
(map (juxt (comp name key) val))
146
colors)
@@ -965,9 +965,10 @@
965
966
(comment
967
(spit "/tmp/ornament.css" (defined-styles))
968
- )
969
- (->> @rules-registry
970
- vals
971
- (sort-by :index)
972
- (mapcat :rules)
973
- process-rules)
+
+ (->> @rules-registry
+ vals
+ (sort-by :index)
+ (mapcat :rules)
+ process-rules))
974
0 commit comments