How do use garden to do something like:
.container input::placeholder {
color: grey;
}
it's quite possible the code I provided only works in ClojureScript . The linked solution is much cleaner. Thank you.
I would try:
[:.container
[:input::placeholder
{:color "grey"}]]
(this should be pretty close)I think that :something::something-else
is invalid syntax. Already solved it like this:
https://github.com/noprompt/garden/issues/148
Thanks