Skip to content

Commit

Permalink
Rebuild fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwathan committed May 24, 2021
1 parent ea3892f commit a2c4490
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 24 deletions.
21 changes: 15 additions & 6 deletions tests/fixtures/tailwind-output-flagged.css
Original file line number Diff line number Diff line change
Expand Up @@ -507,11 +507,20 @@ samp {
}

/**
* Make replaced elements `display: block` by default as that's
* the behavior you want almost all of the time. Inspired by
* CSS Remedy, with `svg` added as well.
* 1. Make replaced elements `display: block` by default as that's
* the behavior you want almost all of the time. Inspired by
* CSS Remedy, with `svg` added as well.
*
* https://github.com/mozdevs/cssremedy/issues/14
* https://github.com/mozdevs/cssremedy/issues/14
*
* 2. Add `vertical-align: middle` to align replaced elements more
* sensibly by default when overriding `display` by adding a
* utility like `inline`.
*
* This can trigger a poorly considered linting error in some
* tools but is included by design.
*
* https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
*/

img,
Expand All @@ -522,8 +531,8 @@ audio,
iframe,
embed,
object {
display: block;
vertical-align: middle;
display: block; /* 1 */
vertical-align: middle; /* 2 */
}

/**
Expand Down
21 changes: 15 additions & 6 deletions tests/fixtures/tailwind-output-important.css
Original file line number Diff line number Diff line change
Expand Up @@ -507,11 +507,20 @@ samp {
}

/**
* Make replaced elements `display: block` by default as that's
* the behavior you want almost all of the time. Inspired by
* CSS Remedy, with `svg` added as well.
* 1. Make replaced elements `display: block` by default as that's
* the behavior you want almost all of the time. Inspired by
* CSS Remedy, with `svg` added as well.
*
* https://github.com/mozdevs/cssremedy/issues/14
* https://github.com/mozdevs/cssremedy/issues/14
*
* 2. Add `vertical-align: middle` to align replaced elements more
* sensibly by default when overriding `display` by adding a
* utility like `inline`.
*
* This can trigger a poorly considered linting error in some
* tools but is included by design.
*
* https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
*/

img,
Expand All @@ -522,8 +531,8 @@ audio,
iframe,
embed,
object {
display: block;
vertical-align: middle;
display: block; /* 1 */
vertical-align: middle; /* 2 */
}

/**
Expand Down
21 changes: 15 additions & 6 deletions tests/fixtures/tailwind-output-no-color-opacity.css
Original file line number Diff line number Diff line change
Expand Up @@ -507,11 +507,20 @@ samp {
}

/**
* Make replaced elements `display: block` by default as that's
* the behavior you want almost all of the time. Inspired by
* CSS Remedy, with `svg` added as well.
* 1. Make replaced elements `display: block` by default as that's
* the behavior you want almost all of the time. Inspired by
* CSS Remedy, with `svg` added as well.
*
* https://github.com/mozdevs/cssremedy/issues/14
* https://github.com/mozdevs/cssremedy/issues/14
*
* 2. Add `vertical-align: middle` to align replaced elements more
* sensibly by default when overriding `display` by adding a
* utility like `inline`.
*
* This can trigger a poorly considered linting error in some
* tools but is included by design.
*
* https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
*/

img,
Expand All @@ -522,8 +531,8 @@ audio,
iframe,
embed,
object {
display: block;
vertical-align: middle;
display: block; /* 1 */
vertical-align: middle; /* 2 */
}

/**
Expand Down
21 changes: 15 additions & 6 deletions tests/fixtures/tailwind-output.css
Original file line number Diff line number Diff line change
Expand Up @@ -507,11 +507,20 @@ samp {
}

/**
* Make replaced elements `display: block` by default as that's
* the behavior you want almost all of the time. Inspired by
* CSS Remedy, with `svg` added as well.
* 1. Make replaced elements `display: block` by default as that's
* the behavior you want almost all of the time. Inspired by
* CSS Remedy, with `svg` added as well.
*
* https://github.com/mozdevs/cssremedy/issues/14
* https://github.com/mozdevs/cssremedy/issues/14
*
* 2. Add `vertical-align: middle` to align replaced elements more
* sensibly by default when overriding `display` by adding a
* utility like `inline`.
*
* This can trigger a poorly considered linting error in some
* tools but is included by design.
*
* https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
*/

img,
Expand All @@ -522,8 +531,8 @@ audio,
iframe,
embed,
object {
display: block;
vertical-align: middle;
display: block; /* 1 */
vertical-align: middle; /* 2 */
}

/**
Expand Down

0 comments on commit a2c4490

Please sign in to comment.