Skip to content
This repository was archived by the owner on Sep 13, 2023. It is now read-only.

Commit 2aecc6b

Browse files
Update shadow effects
1 parent 0ddd1bf commit 2aecc6b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/header.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,14 @@ const useStyles = makeStyles((theme: Theme) => createStyles({
9393
marginTop: '16px',
9494
color: theme.palette.primary.dark,
9595
backgroundColor: theme.palette.primary.light,
96-
boxShadow: '0px 0px 10px -2px #999999',
96+
boxShadow: '1px 2px 5px 2px rgba(9,9,9,0.18)',
9797
[theme.breakpoints.down('xs')]: {
9898
right: '10px',
9999
},
100100
'&:active': {
101101
color: theme.palette.primary.light,
102102
backgroundColor: theme.palette.primary.main,
103-
boxShadow: '0px 0px 10px 5px #999999',
103+
boxShadow: '1px 2px 5px 2px rgba(9,9,9,0.18)',
104104
},
105105
'&:hover': {
106106
}

src/components/layerselectionbutton.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const useStyles = makeStyles((theme: Theme) => (
2222
width: '70px',
2323
height: '70px',
2424
margin: 'auto',
25-
boxShadow: '0px 0px 10px -2px #999999',
25+
boxShadow: '1px 2px 5px 2px rgba(9,9,9,0.18)',
2626
'&:active': {
2727
backgroundColor: theme.palette.primary.main,
2828
},

0 commit comments

Comments
 (0)