mirror of
https://github.com/locomotivemtl/locomotive-boilerplate.git
synced 2026-01-15 00:55:08 +08:00
24 lines
532 B
JavaScript
24 lines
532 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
prefix: 'u-',
|
|
content: [
|
|
'./www/**/*.html',
|
|
'./assets/scripts/**/*'
|
|
],
|
|
theme: {
|
|
screens: {
|
|
'tiny': '500px',
|
|
'small': '700px',
|
|
'medium': '1000px',
|
|
'large': '1200px',
|
|
'big': '1400px',
|
|
'huge': '1600px',
|
|
'enormous': '1800px',
|
|
'gigantic': '2000px',
|
|
'colossal': '2400px'
|
|
}
|
|
},
|
|
plugins: [],
|
|
}
|
|
|