Skip to content

Commit 339ccd4

Browse files
0.16.1 - Fix modal body height in Safari
1 parent 9238794 commit 339ccd4

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file. This project follows [Semantic Versioning](https://semver.org/).
44

5+
## [0.16.1] - 2026-05-16
6+
7+
### Fixed
8+
9+
- Modal body height collapsing to zero in Safari when the dialog used `h-fit`
10+
511
## [0.16.0] - 2026-05-16
612

713
### Added

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
layered-ui-rails (0.16.0)
4+
layered-ui-rails (0.16.1)
55
rails (~> 8.0)
66
tailwindcss-rails (~> 4.0)
77

app/assets/tailwind/layered/ui/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1832,7 +1832,7 @@ pre.l-ui-surface {
18321832
}
18331833

18341834
.l-ui-modal__body {
1835-
@apply flex-1 min-h-0 overflow-y-auto
1835+
@apply flex-auto min-h-0 overflow-y-auto
18361836
px-5 py-4;
18371837
}
18381838

lib/layered/ui/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Layered
22
module Ui
3-
VERSION = "0.16.0"
3+
VERSION = "0.16.1"
44
end
55
end

0 commit comments

Comments
 (0)