forked from rottenMonke/dissapearing-messages-front-end
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (45 loc) · 854 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
41
42
43
44
45
module.exports = {
content: [
"./index.html",
'./src/**/*.{js,jsx,ts,tsx,vue}',
],
theme: {
extend: {
gridTemplateColumns: {
desktop: "300px 1fr",
"modile-menu-opened": "1fr 0px",
"modile-chat-opened": "0px 1fr"
},
gridTemplateRows: {
desktop: "100vh",
mobile: "100vh 100vh"
},
backgroundImage: {
main: `url("/bg.svg");`
},
screens: {
d: "1200px",
},
spacing: {
2: "2px",
4: "4px",
8: "8px",
10: "10px",
12: "12px",
16: "16px",
20: "20px",
24: "24px",
50: "50px",
100: "100px",
400: "400px",
},
fontSize: {
20: "20px",
14: "14px",
16: "16px",
10: "10px",
},
},
},
plugins: [],
};