More properties, val i.o. fun

This commit is contained in:
2020-03-22 16:40:18 +01:00
parent 7a92e53006
commit 2bf19fd647
75 changed files with 1121 additions and 614 deletions

View File

@@ -5,11 +5,11 @@ class Hyphens(
) : CssProperty(value) {
companion object {
fun none() = Hyphens("none")
fun manual() = Hyphens("manual")
fun auto() = Hyphens("auto")
fun initial() = Hyphens("initial")
fun inherit() = Hyphens("inherit")
val none = Hyphens("none")
val manual = Hyphens("manual")
val auto = Hyphens("auto")
val initial = Hyphens("initial")
val inherit = Hyphens("inherit")
}
}