Conv
This commit is contained in:
@@ -607,10 +607,7 @@ export function PhotoList({
|
||||
<Typography
|
||||
variant="small"
|
||||
component="span"
|
||||
sx={(theme) => ({
|
||||
color: theme.colors.accent
|
||||
.A500,
|
||||
})}
|
||||
sx={{ color: "accent.main" }}
|
||||
/>
|
||||
),
|
||||
}}
|
||||
|
||||
@@ -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,
|
||||
},
|
||||
}));
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user