1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-11-10 01:19:53 +01:00

feat: milestone progression borders (#10884)

This commit is contained in:
Mateusz Kwasniewski 2025-10-29 11:02:53 +01:00 committed by GitHub
parent 9a23bc36f8
commit b4208d2cf2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,7 @@ const StyledFormContainer = styled('div')(({ theme }) => ({
gap: theme.spacing(1.5),
padding: theme.spacing(1.5, 2),
backgroundColor: theme.palette.background.elevation1,
border: `1px solid ${theme.palette.divider}`,
width: '100%',
borderRadius: `${theme.shape.borderRadiusLarge}px`,
position: 'relative',

View File

@ -26,6 +26,7 @@ const StyledFormWrapper = styled('div', {
),
...(hasChanged && {
backgroundColor: theme.palette.background.elevation1,
border: `1px solid ${theme.palette.divider}`,
padding: theme.spacing(1.5, 2),
borderRadius: `${theme.shape.borderRadiusLarge}px`,
}),