New Ligera (light) Theme (#990)
* Enhanced Light Theme * New Login Screen * Fix Appbar for sm screen * Reverse Gradient * Fix test error * Fix color * Fix Gradient * Theme color change * Fix playlist autocomp popup * Rename theme * Fix hover icon color
This commit is contained in:
+14
-9
@@ -16,15 +16,20 @@ import ActivityPanel from './ActivityPanel'
|
||||
import UserMenu from './UserMenu'
|
||||
import config from '../config'
|
||||
|
||||
const useStyles = makeStyles((theme) => ({
|
||||
root: {
|
||||
color: theme.palette.text.secondary,
|
||||
},
|
||||
active: {
|
||||
color: theme.palette.text.primary,
|
||||
},
|
||||
icon: { minWidth: theme.spacing(5) },
|
||||
}))
|
||||
const useStyles = makeStyles(
|
||||
(theme) => ({
|
||||
root: {
|
||||
color: theme.palette.text.secondary,
|
||||
},
|
||||
active: {
|
||||
color: theme.palette.text.primary,
|
||||
},
|
||||
icon: { minWidth: theme.spacing(5) },
|
||||
}),
|
||||
{
|
||||
name: 'NDAppBar',
|
||||
}
|
||||
)
|
||||
|
||||
const AboutMenuItem = forwardRef(({ onClick, ...rest }, ref) => {
|
||||
const classes = useStyles(rest)
|
||||
|
||||
Reference in New Issue
Block a user