Merge function-builder branch into master
This commit is contained in:
13
src/commonMain/kotlin/nl/astraeus/css/properties/ZIndex.kt
Normal file
13
src/commonMain/kotlin/nl/astraeus/css/properties/ZIndex.kt
Normal file
@@ -0,0 +1,13 @@
|
||||
package nl.astraeus.css.properties
|
||||
|
||||
class ZIndex(
|
||||
value: String
|
||||
) : CssProperty(value) {
|
||||
|
||||
companion object {
|
||||
val auto = ZIndex("auto")
|
||||
val initial = ZIndex("initial")
|
||||
val inherit = ZIndex("inherit")
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user