mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-13 12:33:25 +02:00
* Remove intermediate squeak-node-frontend dir * Create build-protos.sh * Fix build-protos script in readme
43 lines
925 B
JavaScript
43 lines
925 B
JavaScript
import { makeStyles } from "@material-ui/styles";
|
|
|
|
export default makeStyles(theme => ({
|
|
widgetWrapper: {
|
|
display: "flex",
|
|
minHeight: "100%",
|
|
},
|
|
widgetHeader: {
|
|
padding: theme.spacing(3),
|
|
paddingBottom: theme.spacing(1),
|
|
display: "flex",
|
|
justifyContent: "space-between",
|
|
alignItems: "center",
|
|
},
|
|
widgetRoot: {
|
|
boxShadow: theme.customShadows.widget,
|
|
},
|
|
widgetBody: {
|
|
paddingBottom: theme.spacing(3),
|
|
paddingRight: theme.spacing(3),
|
|
paddingLeft: theme.spacing(3),
|
|
},
|
|
noPadding: {
|
|
padding: 0,
|
|
},
|
|
paper: {
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
flexGrow: 1,
|
|
overflow: "hidden",
|
|
},
|
|
moreButton: {
|
|
margin: -theme.spacing(1),
|
|
padding: 0,
|
|
width: 40,
|
|
height: 40,
|
|
color: theme.palette.text.hint,
|
|
"&:hover": {
|
|
backgroundColor: theme.palette.primary.main,
|
|
color: "rgba(255, 255, 255, 0.35)",
|
|
},
|
|
},
|
|
}));
|