Fork me on GitHub
#garden
<
2019-12-10
>
nmkip15:12:41

How do use garden to do something like:

.container input::placeholder {
  color: grey;
}

dkropfuntucht18:12:20

I would try:

[:.container 
   [:input::placeholder 
      {:color "grey"}]]
(this should be pretty close)

nmkip23:12:45

I think that :something::something-else is invalid syntax. Already solved it like this: https://github.com/noprompt/garden/issues/148

dkropfuntucht02:12:27

it's quite possible the code I provided only works in ClojureScript . The linked solution is much cleaner. Thank you.