-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
40 lines (37 loc) · 979 Bytes
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// tailwind.config.js
module.exports = {
mode: 'jit',
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html", "./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
screens: {
'mobileS': '320px',
// => @media (min-width: 640px) { ... }
'mobileM': '375px',
// => @media (min-width: 1024px) { ... }
'dmobileL': '425px',
},
backgroundImage: {
'cosmos': "url('/animat.gif')",
},
backgroundSize: {
'40' : '40%',
'50' : '50%',
'60' : '60%',
},
zIndex: {
'75': 75,
'100': 100,
},
boxShadow: {
'ssm' : '0 0 5px rgba(0, 0, 0, .4)'
},
},
},
variants: {},
plugins: [
require('tailwind-scrollbar-hide'),
require('tailwind-scrollbar'),
],
}