You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
24 lines
481 B
24 lines
481 B
/** @type {import('tailwindcss').Config} */ |
|
export default { |
|
darkMode: 'class', |
|
content: [ |
|
"./resources/**/*.blade.php", |
|
"./resources/**/*.js", |
|
"./resources/**/*.vue", |
|
], |
|
theme: { |
|
screens: { |
|
'tablet': '640px', |
|
// => @media (min-width: 640px) { ... } |
|
|
|
'laptop': '1024px', |
|
// => @media (min-width: 1024px) { ... } |
|
|
|
'desktop': '1280px', |
|
// => @media (min-width: 1280px) { ... } |
|
}, |
|
extend: {}, |
|
}, |
|
plugins: [], |
|
} |
|
|
|
|