1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: break on words not on all (#6370)

This commit is contained in:
Mateusz Kwasniewski 2024-02-28 14:18:21 +01:00 committed by GitHub
parent c9e7bec690
commit 4392fa5890
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -57,7 +57,7 @@ const StyledDescriptionContainer = styled('div')(({ theme }) => ({
})); }));
const StyledDescription = styled('p')({ const StyledDescription = styled('p')({
wordBreak: 'break-all', wordBreak: 'break-word',
}); });
const FeatureOverviewMetaData = () => { const FeatureOverviewMetaData = () => {