mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-08 00:22:15 +01:00
💄 Fix darkmode styling for manage home page
This commit is contained in:
@@ -102,16 +102,17 @@ export default ManagementPage;
|
||||
const useStyles = createStyles((theme) => ({
|
||||
box: {
|
||||
borderRadius: theme.radius.md,
|
||||
backgroundColor: theme.colorScheme === 'dark' ? theme.colors.red[4] : theme.colors.red[1],
|
||||
backgroundColor:
|
||||
theme.colorScheme === 'dark' ? theme.fn.rgba(theme.colors.red[8], 0.1) : theme.colors.red[1],
|
||||
},
|
||||
boxTitle: {
|
||||
color: theme.colors.red[6],
|
||||
},
|
||||
quickActionCard: {
|
||||
height: "100%",
|
||||
backgroundColor: theme.colors.gray[2],
|
||||
height: '100%',
|
||||
backgroundColor: theme.colorScheme === 'dark' ? theme.colors.dark[6] : theme.colors.gray[2],
|
||||
'&:hover': {
|
||||
backgroundColor: theme.colors.gray[3],
|
||||
backgroundColor: theme.colorScheme === 'dark' ? theme.colors.dark[5] : theme.colors.gray[3],
|
||||
},
|
||||
},
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user