summaryrefslogtreecommitdiffhomepage
path: root/tailwind.config.js
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2024-06-20 15:16:03 -0400
committerrealtradam <[email protected]>2024-06-20 15:16:03 -0400
commitd8784ecd03be1cc90887242ae340a0bbf069da18 (patch)
treedf8617ae53d96175cb0c37cb126060d26fc08c60 /tailwind.config.js
parente77c879f488cdc267c85438d54eb88e805efdc0b (diff)
downloadmalcz.com-d8784ecd03be1cc90887242ae340a0bbf069da18.tar.gz
malcz.com-d8784ecd03be1cc90887242ae340a0bbf069da18.zip
add mobile sliding sidepanel
Diffstat (limited to 'tailwind.config.js')
-rw-r--r--tailwind.config.js16
1 files changed, 9 insertions, 7 deletions
diff --git a/tailwind.config.js b/tailwind.config.js
index 74d0251..3cbfc26 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -5,13 +5,6 @@ export default {
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
- screens: {
- 'dsm': {'max':'640px'},
- 'dmd': {'max':'768px'},
- 'dlg': {'max':'1024px'},
- 'dxl': {'max':'1280px'},
- 'd2xl': {'max':'1536px'}
- },
extend: {
backgroundImage: {
'star': "url('/star.png')",
@@ -19,6 +12,13 @@ export default {
padding: {
'5%': '5%'
},
+ screens: {
+ 'dsm': {'max':'640px'},
+ 'dmd': {'max':'768px'},
+ 'dlg': {'max':'1024px'},
+ 'dxl': {'max':'1280px'},
+ 'd2xl': {'max':'1536px'}
+ },
},
},
plugins: [
@@ -28,6 +28,8 @@ export default {
//require('@tailwindcss/container-queries'),
],
safelist: [
+ 'h-12',
+ 'w-12',
'before:w-3',
'before:w-4'
]