Grouvie
01/16/2022, 2:27 PM.container.button-pressed .show-overlay {
transform: translateX(0);
}
At the moment my Stylesheets look similar to this:
object SpanStyleSheet : StyleSheet() {
val span by style {
fontSize(12.px)
maxWidth(20.vw)
}
}
Second question:
How can I combine multiple StyleSheets together?MrPowerGamerBR
01/16/2022, 7:15 PMDavid Herman
01/16/2022, 7:15 PMDavid Herman
01/16/2022, 7:16 PMobject MyStyleSheet : StyleSheet() {
".container.button-pressed.show-overlay" {
...
}
}
David Herman
01/16/2022, 7:22 PMStyle
would work without the need for any special pre-processing.Grouvie
01/17/2022, 3:47 PM