Guest User

index.styles.ts

a guest
Jul 29th, 2021
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import { makeStyles } from "@material-ui/core/styles";
  2.  
  3. const useStyles = makeStyles((theme) => {
  4.   return {
  5.     "boxStyles": {
  6.       "background": theme.palette.secondary.dark,
  7.       "padding": `1rem`
  8.     },
  9.     "cardStyles": {
  10.       "background": theme.palette.primary.light
  11.     }
  12.   }
  13. });
  14.  
  15. export default useStyles;
  16.  
Advertisement
Add Comment
Please, Sign In to add comment