fix: update ConfirmModal description styling for better text wrapping

This commit is contained in:
Nawaz Dhandala
2025-10-13 10:56:46 +01:00
parent a2c406d7cc
commit efa7224718

View File

@@ -44,7 +44,7 @@ const ConfirmModal: FunctionComponent<ComponentProps> = (
>
<div
data-testid="confirm-modal-description"
className="text-gray-500 mt-5 text-sm text-wrap"
className="text-gray-500 mt-5 text-sm whitespace-pre-wrap break-words max-h-96 overflow-y-auto pr-1"
>
{props.description}
</div>