anyone else feel like the kotlin css and html wrap...
# announcements
h
anyone else feel like the kotlin css and html wrappers are a bit lack luster
d
i think they're more proof-of-concept than actual production ready libraries
h
yeah. i really wanted to use, but i had to make so many edits, im just forking my own all together. all the additions (like hover, before, after, etc..) don’t work at all. im not sure how i’m supposed to use them.
g
Maybe make sense to open issue or send Pull request
h
i was thinking of doing that, but so much seems wrong. adding the
hover
tag into a css rule gives you very unexpected results:
Copy code
p {
	hover { color = Color.yellow }
	color = Color.blue
}
and here is the the result:
Copy code
p {
color: blue;
&:hover {
color: yellow;
}
}
soo im not sure how im supposed to use the
hover
flag
g
Looks like a big, try to report an issue or even better open PR
h
alright, ill do that
is there a specific chat for discussing wrappers?
i contacted Leonid, and turns out, the added functionality comes with kotlin-styled, which parses that into proper css