This commit is contained in:
Manav Rathi
2025-01-15 12:49:08 +05:30
parent d7e62f2b26
commit 58db7e8a91
3 changed files with 10 additions and 13 deletions

View File

@@ -607,10 +607,7 @@ export function PhotoList({
<Typography
variant="small"
component="span"
sx={(theme) => ({
color: theme.colors.accent
.A500,
})}
sx={{ color: "accent.main" }}
/>
),
}}

View File

@@ -594,9 +594,9 @@ const SharedAlbumNavbar: React.FC<SharedAlbumNavbarProps> = ({
const EnteLogoLink = styled("a")(({ theme }) => ({
// Remove the excess space at the top.
svg: { verticalAlign: "middle" },
color: theme.colors.text.base,
color: theme.vars.palette.text.base,
":hover": {
color: theme.palette.accent.main,
color: theme.vars.palette.accent.main,
},
}));

View File

@@ -462,18 +462,18 @@ const CustomToggleButton = styled(ToggleButton)(({ theme }) => ({
textTransform: "none",
padding: "12px 16px",
borderRadius: "4px",
backgroundColor: theme.colors.fill.faint,
width: "97.433px",
backgroundColor: theme.vars.palette.fill.faint,
border: `1px solid transparent`,
color: theme.colors.text.faint,
color: theme.vars.palette.text.faint,
"&.Mui-selected": {
backgroundColor: theme.colors.accent.A500,
color: theme.colors.text.base,
backgroundColor: theme.vars.palette.accent.main,
color: theme.vars.palette.text.base,
},
"&.Mui-selected:hover": {
backgroundColor: theme.colors.accent.A500,
color: theme.colors.text.base,
backgroundColor: theme.vars.palette.accent.main,
color: theme.vars.palette.text.base,
},
width: "97.433px",
}));
interface PlansProps {