-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
52 lines (48 loc) · 1.69 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primaryBlack: '#111',
secondaryBlack: '#333',
buttonBg: '#741277',
buttonHoverBg: '#98199c',
},
width: {
container: '1300px'
},
padding: {
containerDesktop: '30px',
containerMobile: '20px'
},
screens: {
'mobile': { 'raw': '(max-width: 599px)' },
'desktop': { 'raw': '(min-width: 600px)' },
'leaderboardDesktop': { 'raw': '(min-width: 550px)' },
'leaderboardMobile': { 'raw': '(max-width: 549px)' },
'm1200': { 'raw': '(max-width: 1200px)' },
'm1000': { 'raw': '(max-width: 1000px)' },
'm900': { 'raw': '(max-width: 900px)' },
'm850': { 'raw': '(max-width: 850px)' },
'm750': { 'raw': '(max-width: 750px)' },
'm700': { 'raw': '(max-width: 700px)' },
'm650': { 'raw': '(max-width: 650px)' },
'm600': { 'raw': '(max-width: 600px)' },
'm550': { 'raw': '(max-width: 550px)' },
'm500': { 'raw': '(max-width: 500px)' },
'm450': { 'raw': '(max-width: 450px)' },
'm400': { 'raw': '(max-width: 400px)' },
'm350': { 'raw': '(max-width: 350px)' },
'portrait-main': {'raw': '(orientation: portrait) and (max-height: 3000px)'},
'portrait-lg': {'raw': '(orientation: portrait) and (min-height: 770px)'},
'portrait-smaller': {'raw': '(orientation: portrait) and (min-height: 630px)'},
'portrait-smallest': {'raw': '(orientation: portrait) and (max-height: 540px)'},
}
},
},
plugins: [],
}