block. I am writing the following code in a stylesheet:
Copy code
public val treeCaretDown: String by style {
before {
content("\u25B6")
color(Color.black)
display(DisplayStyle.InlineBlock)
marginRight(6.px)
transform { rotate(90.deg) }
}
}
But
before
block is missing in the final CSS. Am I doing something wrong?