Skip to content
New issue

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

Insert always-on defaults layer in correct spot #6526

Merged
merged 2 commits into from Dec 15, 2021
Merged

Commits on Dec 15, 2021

  1. insert in correct spot

    We were injecting the always on `@tailwind defaults` layer at the beginning of
    the file. However, if a `@tailwind base` layer is available, then that
    will now be injected _after_ the defaults layer. The base layer does
    contain some reset that are now overriding the defaults we set.
    
    So now we will:
    - Insert the `@tailwind defaults` layer at the beginning of the file
      _if_ there is no `@tailwind base`
    - Insert the `@tailwind defaults` layer after the `@tailwind base` layer
      if it exists.
    RobinMalfait committed Dec 15, 2021
    Copy the full SHA
    a7b61a0 View commit details
    Browse the repository at this point in the history
  2. update changelog

    RobinMalfait committed Dec 15, 2021
    Copy the full SHA
    83d6fc6 View commit details
    Browse the repository at this point in the history