Merged PR 1849: feat(libs-ui-item-rows): improve data value wrapping and label sizing

feat(libs-ui-item-rows): improve data value wrapping and label sizing

- Add `break-all` to `.ui-item-row-data-value` for better handling of long or unbroken content, ensuring values do not overflow their containers
- Use Tailwind's `min-w-[6.5rem]` utility for `.ui-item-row-data-label` and `.ui-item-row-data-label` in both `item-row-data` and `client-row` components, standardizing minimum label width and improving layout consistency

Ref: #5074
This commit is contained in:
Nino Righi
2025-06-10 14:43:12 +00:00
committed by Lorenz Hilpert
parent 9857d86bdf
commit a37201ef33
2 changed files with 2 additions and 2 deletions

View File

@@ -11,5 +11,5 @@
}
.ui-item-row-data-label {
width: 6.5rem;
@apply min-w-[6.5rem];
}

View File

@@ -12,6 +12,6 @@
}
.ui-item-row-data-value {
@apply text-isa-secondary-900 isa-text-body-2-regular;
@apply text-isa-secondary-900 isa-text-body-2-regular break-all;
font-size: 0.875rem;
}