-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
39 lines (38 loc) · 1 KB
/
Copy pathtailwind.config.cjs
File metadata and controls
39 lines (38 loc) · 1 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx,vue}'],
theme: {
screens: {
// => @media (min-width: 640px) { ... }
sm: '640px',
md: '768px',
mdd: '800px',
mmd: '900px',
lg: '1024px',
llg: '1065px',
xl: '1280px',
'2xl': '1536px',
},
fontFamily: {
manrope: 'Manrope, sans-serif',
inter: 'Inter, sans-serif',
},
extend: {
backgroundSize: {
'100%': '100% 100%',
},
backgroundImage: {
'hero-desktop': "url('/hero-bg-desktop.jpg')",
'hero-tablet': "url('/hero-bg-tablet.png')",
'hero-mobile': "url('/hero-bg-mobile.png')",
'wallpaper-1': "url('/wallpaper1.jpg')",
'wallpaper-2': "url('/wallpaper2.jpg')",
'wallpaper-3': "url('/wallpaper3.jpg')",
'wallpaper-4': "url('/wallpaper4.png')",
men: "url('/men.jpg')",
woman: "url('/woman.jpg')",
},
},
},
plugins: [],
}