forked from theokbokki/web-artisan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
36 lines (36 loc) · 950 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
theme: {
extend: {
fontFamily: {
title: ['Sora', 'ui-sans-serif', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'],
},
screens: {
'nav-1': '540px',
'nav-2': '850px',
},
gridTemplateColumns: {
'fill': 'repeat(auto-fill, clamp(288px, 90% ,312px))',
'teachers': '1fr, 320px',
'nav': 'repeat(auto-fill, minmax(150px, 1fr))',
},
minWidth: {
'clamp': 'clamp(224px, 70%, 440px)',
'clamp-lg': 'clamp(440px, 90%, 800px)',
},
maxWidth: {
'1.5xl': '39rem',
},
transitionProperty: {
'height': 'height',
'spacing': 'margin, padding',
}
},
},
plugins: [],
}