Skip to content

Commit b7243b1

Browse files
authored
fix(ui): bulk upload action bar buttons wrapping (#13486)
### What? Added `white-space: nowrap` to the `.bulk-upload--actions-bar__buttons` class to ensure button labels remain on a single line. ### Why? In the bulk upload action bar, buttons containing multi-word labels were wrapping to two lines, causing them to expand vertically and misalign with other controls. ### How? Applied `white-space: nowrap` to `.bulk-upload--actions-bar__buttons` so all button labels stay on one line, maintaining consistent height and alignment. #### Before <img width="1469" height="525" alt="Screenshot 2025-08-15 at 9 20 07 AM" src="https://github.com/user-attachments/assets/aecc65ae-7b2f-43ba-96c8-1143fcee7f88" /> #### After <img width="1474" height="513" alt="Screenshot 2025-08-15 at 9 19 55 AM" src="https://github.com/user-attachments/assets/438c6ee1-b966-4966-8686-37ba4619a25c" />
1 parent f5d7766 commit b7243b1

File tree

1 file changed

+1
-0
lines changed
  • packages/ui/src/elements/BulkUpload/ActionsBar

1 file changed

+1
-0
lines changed

packages/ui/src/elements/BulkUpload/ActionsBar/index.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
display: flex;
4848
gap: var(--base);
4949
margin-left: auto;
50+
white-space: nowrap;
5051
}
5152

5253
@include mid-break {

0 commit comments

Comments
 (0)