|
123456789101112131415161718192021222324252627282930313233343536 |
- module.exports = {
- mode: 'jit',
- content: [
- '../templates/*.html'
- ],
- theme: {
- extend: {
- fontSize: {
-
- sm: ['1rem', { lineHeight: '1.35' }],
- base: ['1.25rem', { lineHeight: '1.22' }],
-
-
-
-
- '4xl': ['2.8rem', { lineHeight: '1' }],
-
-
-
-
-
- },
- colors: {
-
-
-
-
-
- },
- }
- },
- variants: {
- extend: {},
- },
- plugins: [],
- }
|