fix in UIKitWidth#Fixed

This commit is contained in:
InsanusMokrassar 2022-02-08 19:12:24 +06:00
parent e10bbdeaa0
commit 6f4f1776c4
2 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@
* Support of `UIKitHeight`
* New builder `AttributesBuilder`
* New `Percents`/`Pixels` abstractions
* Fixes in `UIKitWidth#Fixed` classnames
## 0.0.31

View File

@ -57,7 +57,7 @@ sealed class UIKitWidth(classname: String) : UIKitModifier {
}
}
sealed class Fixed(suffix: String) : UIKitWidth("uk-width-fixed-$suffix") {
sealed class Fixed(suffix: String) : UIKitWidth("uk-width-$suffix") {
object Small : Fixed("small")
object Medium : Fixed("medium")