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,10 +5,10 @@ class OutlineWidth(
) : CssProperty(value) {
companion object {
fun thin() = OutlineWidth("thin")
fun medium() = OutlineWidth("medium")
fun thick() = OutlineWidth("thick")
fun initial() = BorderWidth("initial")
fun inherit() = BorderWidth("inherit")
val thin = OutlineWidth("thin")
val medium = OutlineWidth("medium")
val thick = OutlineWidth("thick")
val initial = BorderWidth("initial")
val inherit = BorderWidth("inherit")
}
}