Skip to content

Commit

Permalink
tweak comments
Browse files Browse the repository at this point in the history
  • Loading branch information
silverwind committed Feb 24, 2024
1 parent 64ff8c4 commit ee7c570
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ export default {
blocklist: [
// classes that conflict with fomantic
'table', 'inline', 'grid', 'truncate', 'transition', 'fixed',
// classes that don't work without CSS vars from "@tailwind base" which we don't use
// classes that don't work without CSS variables from "@tailwind base" which we don't use
'transform', 'shadow', 'ring', 'blur', 'grayscale', 'invert', '!invert', 'filter', '!filter',
'backdrop-filter',
// false-positives or otherwise unneeded
'[-a-zA-Z:0-9_.]',
],
theme: {
colors: {
// make bg-red etc work with our css variables
// make bg-red etc work with our CSS variables
...Object.fromEntries(colors.map((color) => [color, `var(--color-${color})`])),
inherit: 'inherit',
currentcolor: 'currentcolor',
Expand Down

0 comments on commit ee7c570

Please sign in to comment.