Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions __tests__/fixtures/tailwind-output-important.css
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,16 @@ h6 {
font-weight: inherit;
}

/**
* Reset links to optimize for opt-in styling instead of
* opt-out.
*/

a {
color: inherit;
text-decoration: inherit;
}

/**
* Reset form element properties that are easy to forget to
* style explicitly so you don't inadvertently introduce
Expand Down
10 changes: 10 additions & 0 deletions __tests__/fixtures/tailwind-output.css
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,16 @@ h6 {
font-weight: inherit;
}

/**
* Reset links to optimize for opt-in styling instead of
* opt-out.
*/

a {
color: inherit;
text-decoration: inherit;
}

/**
* Reset form element properties that are easy to forget to
* style explicitly so you don't inadvertently introduce
Expand Down
10 changes: 10 additions & 0 deletions src/plugins/css/preflight.css
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,16 @@ h6 {
font-weight: inherit;
}

/**
* Reset links to optimize for opt-in styling instead of
* opt-out.
*/

a {
color: inherit;
text-decoration: inherit;
}

/**
* Reset form element properties that are easy to forget to
* style explicitly so you don't inadvertently introduce
Expand Down