remove auto margin from dialog

This commit is contained in:
InsanusMokrassar 2022-02-24 14:42:45 +06:00
parent ebbfac6763
commit 0b40c3acf0
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
## 0.0.37 ## 0.0.37
* `Dialog` now do not add auto margin by default
* Support of `Accordion` element * Support of `Accordion` element
## 0.0.36 ## 0.0.36

View File

@ -44,7 +44,7 @@ fun Dialog(
include(UIKitModal) include(UIKitModal)
} }
id("dialog${Random.nextUInt()}") id("dialog${Random.nextUInt()}")
include(*modifiers, UIKitFlex.Alignment.Vertical.Top) include(*modifiers)
attributesCustomizer() attributesCustomizer()
} }
) { ) {