Skip to content

Commit 903125e

Browse files
committed
refactor: update form and dynamic components with grid layout and overflow handling
1 parent 1428430 commit 903125e

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

app/form/form.css

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,10 @@
44
@import "./../../components/styles/form.css";
55

66
:host {
7-
display: block;
7+
display: grid;
8+
grid-template-rows: auto 1fr;
89
padding: var(--padding);
910
width: 100%;
1011
height: 100%;
11-
}
12-
13-
.list-item {
14-
display: block;
15-
height: 2rem;
16-
background: red;
12+
overflow: hidden;
1713
}

components/dynamic-columns/dynamic-columns.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
user-select: none;
1010
width: 100%;
1111
height: 100%;
12+
overflow: hidden;
1213
}
1314

1415
::slotted(.resize-handle) {

components/dynamic-rows/dynamic-rows.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
user-select: none;
1111
width: 100%;
1212
height: 100%;
13+
overflow: hidden;
1314
}
1415

1516
::slotted(.resize-handle) {

0 commit comments

Comments
 (0)