aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Window/WindowSurface.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Window/WindowSurface.tsx')
-rw-r--r--src/lib/Window/WindowSurface.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/Window/WindowSurface.tsx b/src/lib/Window/WindowSurface.tsx
index a65e398..1900901 100644
--- a/src/lib/Window/WindowSurface.tsx
+++ b/src/lib/Window/WindowSurface.tsx
@@ -22,7 +22,7 @@ const useStyles = makeStyles(theme => ({
'& a.MuiTypography-root': {
color: theme.palette.primary.light,
},
- }
+ },
}));
@@ -32,12 +32,12 @@ const WindowSurface: React.FC<PropTypes> = ({ size, position, children }) => {
return (
<Paper
variant="outlined"
- style={{...size, ...position}}
+ style={{ ...size, ...position }}
className={classes.surface}
>
{children}
</Paper>
- )
+ );
};