Skip to content

Commit 4618f8d

Browse files
author
arteria32
committed
fix(dynamic-forms): add overflowing rules for rows blocks
1 parent 40545a7 commit 4618f8d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/lib/core/components/Form/hooks/useSearch/useSearch.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
.#{$ns}use-search {
44
margin-bottom: 15px;
5-
5+
width: max-content;
66
&_hidden {
77
display: none;
88
}

src/lib/kit/components/Layouts/Row/Row.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
width: 500px;
66
max-width: 500px;
77
margin-bottom: 15px;
8+
overflow: hidden;
89

910
&:last-child {
1011
margin-bottom: 0;
@@ -65,11 +66,13 @@
6566
display: flex;
6667
flex-direction: column;
6768
flex-grow: 1;
69+
overflow: hidden;
6870
margin-left: 15px;
6971

7072
&-inner {
7173
display: flex;
7274
justify-content: space-around;
75+
overflow: hidden;
7376
}
7477
}
7578

@@ -89,5 +92,6 @@
8992

9093
&__error-wrapper {
9194
flex: 1 1 100%;
95+
overflow: hidden;
9296
}
9397
}

0 commit comments

Comments
 (0)