1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

feat: padding last seen (#6716)

This commit is contained in:
Jaanus Sellin 2024-03-27 15:51:11 +02:00 committed by GitHub
parent d7dc01d396
commit 9393f86c66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,10 +38,11 @@ const StyledDescriptionBlockHeader = styled('p')(({ theme }) => ({
width: '40%', width: '40%',
justifyContent: 'flex-start', justifyContent: 'flex-start',
})); }));
const StyledValueContainer = styled('div')({ const StyledValueContainer = styled('div')(({ theme }) => ({
width: '40%', width: '40%',
justifyContent: 'center', justifyContent: 'center',
}); padding: theme.spacing(0, 1, 0, 1),
}));
const StyledDescriptionSubHeader = styled('p')(({ theme }) => ({ const StyledDescriptionSubHeader = styled('p')(({ theme }) => ({
fontSize: theme.fontSizes.smallBody, fontSize: theme.fontSizes.smallBody,