We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seems like it used the line height to set the font size value. Possibly related to #45
"tailwind-config-viewer": "^1.6.1" "tailwindcss": "^2.1.2",
module.exports = { purge: ['src/**/*'], important: '.sdk', darkMode: false, theme: { screens: { xxs: '280px', xs: '480px', sm: '600px', md: '782px', md2: '960px', // admin sidebar auto folds lg: '1080px', // adminbar goes big xl: '1280px', '2xl': '1440px', '3xl': '1600px', }, // Extend will add on to TW config, where the above will override and replace extend: { fontSize: { '3xl': ['2rem', '2.5rem'], }, colors: { 'wp-theme': { 500: 'var(--wp-admin-theme-color)', 600: 'var(--wp-admin-theme-color-darker-10)', 700: 'var(--wp-admin-theme-color-darker-20)', }, wp: { alert: { yellow: '#f0b849', red: '#cc1818', green: '#4ab866', }, }, gray: { 100: '#f0f0f0', 150: '#eaeaea', // This wasn't a variable but I saw it on buttons 200: '#e0e0e0', // Used sparingly for light borders. 300: '#dddddd', // Used for most borders. 400: '#cccccc', 500: '#cccccc', // WP didn't have a 500 value for some reason so I just copied the 400 600: '#949494', // Meets 3:1 UI or large text contrast against white. 700: '#757575', // Meets 4.6:1 text contrast against white. 900: '#1e1e1e', }, }, zIndex: { high: '1000000', max: '2147483647', // Highest the browser allows - don't block WP re-auth modal though }, }, }, variants: { extend: {}, }, plugins: [], corePlugins: { preflight: false, container: false, }, }
The text was updated successfully, but these errors were encountered:
39a7edf
Thanks for the report. Fixed in v.1.6.2.
Sorry, something went wrong.
No branches or pull requests
Seems like it used the line height to set the font size value. Possibly related to #45
"tailwind-config-viewer": "^1.6.1"
"tailwindcss": "^2.1.2",
The text was updated successfully, but these errors were encountered: