refactor(web): update shadows for material specs

This commit is contained in:
Paul Armstrong
2021-02-04 10:49:14 -08:00
committed by Blake Blackshear
parent 0cac2fec2a
commit 15ae3bee55
3 changed files with 19 additions and 10 deletions

View File

@@ -4,14 +4,21 @@ module.exports = {
purge: ['./public/**/*.html', './src/**/*.jsx'],
darkMode: 'class',
theme: {
extend: {},
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
'3xl': '1720px',
extend: {
screens: {
'2xl': '1536px',
'3xl': '1720px',
},
},
boxShadow: {
sm: '0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24)',
DEFAULT: '0px 2px 1px -1px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 1px 3px 0px rgb(0 0 0 / 12%);',
md: '0px 2px 2px -1px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 1px 3px 0px rgb(0 0 0 / 12%);',
lg: '0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23)',
xl: '0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22)',
'2xl': '0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22)',
'3xl': '',
none: '',
},
},
variants: {