add sidebar with redux
- add store - add routes - add page wrapper, mainlayout - add nav folder
This commit is contained in:
17
src/configs/colorConfigs.js
Normal file
17
src/configs/colorConfigs.js
Normal file
@@ -0,0 +1,17 @@
|
||||
import { colors } from "@mui/material";
|
||||
|
||||
const colorConfigs = {
|
||||
sidebar: {
|
||||
bg: "#233044",
|
||||
color: "#eeeeee",
|
||||
hoverBg: "#1e293a",
|
||||
activeBg: "#1e253a"
|
||||
},
|
||||
topbar: {
|
||||
bg: "#fff",
|
||||
color: "#000"
|
||||
},
|
||||
mainBg: colors.grey["100"]
|
||||
};
|
||||
|
||||
export default colorConfigs;
|
||||
7
src/configs/sizeConfigs.js
Normal file
7
src/configs/sizeConfigs.js
Normal file
@@ -0,0 +1,7 @@
|
||||
const sizeConfigs = {
|
||||
sidebar: {
|
||||
width: "300px"
|
||||
}
|
||||
};
|
||||
|
||||
export default sizeConfigs;
|
||||
Reference in New Issue
Block a user