Skip to content

Commit fc27d97

Browse files
Add flexbox layout to table rows in ContentMapper
Updated the styling for .table-row to use flexbox for better alignment and spacing. Added properties for child elements to ensure proper layout and responsiveness.
1 parent ad7a762 commit fc27d97

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

ui/src/components/ContentMapper/index.scss

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -414,3 +414,16 @@ div .table-row {
414414
margin: 0 auto;
415415
}
416416
}
417+
418+
.table-row {
419+
display: flex;
420+
align-items: center;
421+
gap: 8px;
422+
}
423+
.table-row .select {
424+
flex: 1;
425+
}
426+
.advanced-setting-button,
427+
.table-row button {
428+
flex-shrink: 0;
429+
}

0 commit comments

Comments
 (0)