node-mongo-demo
node.js and mongodb demo
git clone https://9o.is/git/node-mongo-demo.git
styles.js
(842B)
1 import { theme } from "../../themes/Default";
2
3 import { deepPurple } from "@mui/material/colors";
4
5 export const styles = {
6 appBar: {
7 borderRadius: 15,
8 margin: "30px 0",
9 display: "flex",
10 flexDirection: "row",
11 justifyContent: "space-between",
12 alignItems: "center",
13 padding: "10px 50px",
14 },
15 heading: {
16 color: "rgba(0,183,255, 1)",
17 textDecoration: "none",
18 },
19 toolbar: {
20 display: "flex",
21 justifyContent: "flex-end",
22 width: "1000px",
23 },
24 profile: {
25 display: "flex",
26 justifyContent: "space-between",
27 width: "600px",
28 },
29 userName: {
30 display: "flex",
31 alignItems: "center",
32 },
33 brandContainer: {
34 display: "flex",
35 alignItems: "center",
36 },
37 purple: {
38 color: theme.palette.getContrastText(deepPurple[500]),
39 backgroundColor: deepPurple[500],
40 },
41 };