release: 1.4.2, tweak UI, fix emoji on mac

This commit is contained in:
wonfen
2023-12-03 14:01:53 +08:00
parent 290a024a9e
commit 20d580ade8
14 changed files with 69 additions and 48 deletions

View File

@@ -10,9 +10,7 @@ export const LayoutItem = (props: LinkProps) => {
const navigate = useNavigate();
return (
<ListItem
sx={{ py: 0.5, maxWidth: 250, mx: "auto", padding: "4px 0px 4px 2px" }}
>
<ListItem sx={{ py: 0.5, maxWidth: 250, mx: "auto", padding: "1px 0px" }}>
<ListItemButton
selected={!!match}
sx={[

View File

@@ -87,7 +87,7 @@ export const useCustomTheme = () => {
}
// css
const backgroundColor = mode === "light" ? "#ffffff" : "#0E1621";
const backgroundColor = mode === "light" ? "#ffffff" : "#0B121C";
const selectColor = mode === "light" ? "#f5f5f5" : "#d5d5d5";
const scrollColor = mode === "light" ? "#90939980" : "#54545480";