Skip to content

Commit

Permalink
Add new fill-none utility for fill: none, Add new stroke-none utility…
Browse files Browse the repository at this point in the history
… for stroke: none

tailwindlabs/tailwindcss#9403
  • Loading branch information
dcastil committed Oct 19, 2022
1 parent 7d3dc50 commit 336d7e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/default-config.ts
Expand Up @@ -1518,7 +1518,7 @@ export function getDefaultConfig() {
* Fill
* @see https://tailwindcss.com/docs/fill
*/
fill: [{ fill: [colors] }],
fill: [{ fill: [colors, 'none'] }],
/**
* Stroke Width
* @see https://tailwindcss.com/docs/stroke-width
Expand All @@ -1528,7 +1528,7 @@ export function getDefaultConfig() {
* Stroke
* @see https://tailwindcss.com/docs/stroke
*/
stroke: [{ stroke: [colors] }],
stroke: [{ stroke: [colors, 'none'] }],
// Accessibility
/**
* Screen Readers
Expand Down

0 comments on commit 336d7e5

Please sign in to comment.