mirror of
https://github.com/InsanusMokrassar/JSUIKitKBindings.git
synced 2024-11-16 21:33:50 +00:00
21 lines
526 B
Kotlin
21 lines
526 B
Kotlin
package dev.inmo.jsuikit.modifiers
|
|
|
|
sealed class UIKitGrid(suffix: String) : UIKitModifier {
|
|
override val classes: Array<String> = arrayOf("uk-grid-$suffix")
|
|
|
|
sealed class Gap(suffix: String) : UIKitGrid(suffix) {
|
|
|
|
object Small : Gap("small")
|
|
object Medium : Gap("medium")
|
|
object Large : Gap("large")
|
|
object Collapse : Gap("collapse")
|
|
|
|
}
|
|
|
|
object Divider : UIKitGrid("divider")
|
|
|
|
object MatchHeight : UIKitGrid("match")
|
|
object ItemMatchHeight : UIKitGrid("item-match")
|
|
|
|
}
|