Skip to content

Commit

Permalink
fix: tailwind config ES module exporting
Browse files Browse the repository at this point in the history
  • Loading branch information
gmolki committed Jan 7, 2025
1 parent de691c4 commit 8b0d352
Showing 1 changed file with 21 additions and 22 deletions.
43 changes: 21 additions & 22 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,26 +1,25 @@
/* eslint-disable no-undef */
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
screens: {
xs: '0rem', // 0px
sm: '36rem', // 576px
md: '48rem', // 768px
lg: '62rem', // 992px
xl: '75rem', // 1200px
'2xl': '87.5rem', // 1400px
},
fontSize: {
28: '1.75rem',
24: '1.5rem',
18: '1.125rem',
16: '1rem',
14: '0.875rem',
12: '0.75rem',
10: '0.625rem',
},
extend: {},

export const content = ['./src/**/*.{js,jsx,ts,tsx}']
export const theme = {
screens: {
xs: '0rem', // 0px
sm: '36rem', // 576px
md: '48rem', // 768px
lg: '62rem', // 992px
xl: '75rem', // 1200px
'2xl': '87.5rem', // 1400px
},
plugins: [],
fontSize: {
28: '1.75rem',
24: '1.5rem',
18: '1.125rem',
16: '1rem',
14: '0.875rem',
12: '0.75rem',
10: '0.625rem',
},
extend: {},
}
export const plugins = []

0 comments on commit 8b0d352

Please sign in to comment.