Skip to content

Commit c56b500

Browse files
committed
Adjust flex-child style & internal layering
1 parent 7415c62 commit c56b500

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
> Committed but unreleased changes are put here, at the top. Older releases are detailed chronologically below.
44
5+
## 2.22.8 (2024-10-10)
6+
7+
#### Changed
8+
9+
- `nested-grid`: Adjust flex-child style & internal layering
10+
511
## 2.22.6 (2024-10-08)
612

713
#### Fixed

src/re_com/nested_grid.cljs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1107,18 +1107,18 @@
11071107
:justify-content :end
11081108
:height 25
11091109
:background-color :white
1110-
:z-index 3}
1110+
:z-index 2}
11111111
(when sticky?
11121112
{:position :sticky
11131113
:top sticky-top}))}
11141114
[box/v-box {:align :center
11151115
:justify :center
1116-
:style {:z-index 4
1117-
:position :sticky
1116+
:style {:position :sticky
11181117
:background-color :white
11191118
:right 0
11201119
:width 25
1121-
:height 25}
1120+
:height 25
1121+
:margin-right 10}
11221122
:children [export-button]}]]
11231123
outer-grid-container [:div
11241124
(themed ::outer-grid-container
@@ -1180,7 +1180,7 @@
11801180
[:div (themed ::wrapper
11811181
{:style (merge {:flex-direction :column}
11821182
(when-not sticky?
1183-
(merge {:flex 1
1183+
(merge {:flex "0 0 auto"
11841184
:display :flex}
11851185
(when remove-empty-column-space?
11861186
{:max-width :fit-content})

0 commit comments

Comments
 (0)