More properties
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package nl.astraeus.css.properties
|
||||
|
||||
class OutlineWidth(
|
||||
value: String
|
||||
) : CssProperty(value) {
|
||||
|
||||
companion object {
|
||||
fun thin() = OutlineWidth("thin")
|
||||
fun medium() = OutlineWidth("medium")
|
||||
fun thick() = OutlineWidth("thick")
|
||||
fun initial() = BorderWidth("initial")
|
||||
fun inherit() = BorderWidth("inherit")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user