Skip to content

Commit a571025

Browse files
committed
style: fix merge conf
1 parent aa482b8 commit a571025

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/pages/sidepanel/components/BottomNavigation.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ interface NavigationSection {
1616
ariaLabel: string;
1717
}
1818

19-
const StyledBottomNavigation = styled(BottomNavigation)(() => ({
19+
const StyledBottomNavigation = styled(BottomNavigation)(({ theme }) => ({
2020
position: 'fixed',
2121
bottom: 0,
2222
width: '100%',
@@ -26,7 +26,8 @@ const StyledBottomNavigation = styled(BottomNavigation)(() => ({
2626
alignItems: 'center',
2727
gap: '0.625rem', // 10px
2828
padding: '0.75rem 1rem', // 12px 16px
29-
backgroundColor: '#E9E8EDB8', // Figma background with transparency
29+
backgroundColor: theme.palette.background.default,
30+
opacity: 0.72,
3031
backdropFilter: 'blur(0.83125rem)', // 13.3px - Figma blur value
3132
WebkitBackdropFilter: 'blur(0.83125rem)', // Safari support
3233
cursor: 'default',

0 commit comments

Comments
 (0)