node-mongo-demo

node.js and mongodb demo

git clone https://9o.is/git/node-mongo-demo.git

styles.js

(840B)


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