Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tailwindlabs/tailwindcss
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.4.10
Choose a base ref
...
head repository: tailwindlabs/tailwindcss
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.4.11
Choose a head ref
  • 3 commits
  • 5 files changed
  • 1 contributor

Commits on Sep 11, 2024

  1. Allow anchor-size(…) in arbitrary values (#14393)

    This PR fixes an issue where using `anchor-size` in arbitrary values
    resulted in the incorrect css.
    
    Input: `w-[calc(anchor-size(width)+8px)]`
    Output:
    ```css
    .w-\[calc\(anchor-size\(width\)\+8px\)\] {
      width: calc(anchor - size(width) + 8px);
    }
    ```
    
    This PR fixes that, by generating the correct CSS:
    ```css
    .w-\[calc\(anchor-size\(width\)\+8px\)\] {
      width: calc(anchor-size(width) + 8px);
    }
    ```
    RobinMalfait authored Sep 11, 2024
    Configuration menu
    Copy the full SHA
    6d9ae82 View commit details
    Browse the repository at this point in the history
  2. update changelog

    RobinMalfait committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    8dd9246 View commit details
    Browse the repository at this point in the history
  3. 3.4.11

    RobinMalfait committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    818d10a View commit details
    Browse the repository at this point in the history
Loading