Skip to content

v2.0.0-beta.166

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 27 Jul 13:09
· 715 commits to beta since this release

Improvements

CSS
  • Rename config.breakpoints to config.viewports and add the viewport 4xs d766c3f by @1aron

    export default {
    -   breakpoints: {
    -       '3xs': 360,
    -       '2xs': 480,
    -       xs: 600,
    -       sm: 768,
    -       md: 1024,
    -       lg: 1280,
    -       xl: 1440,
    -       '2xl': 1600,
    -       '3xl': 1920,
    -       '4xl': 2560
    -   },
    +   viewports: {
    +       '4xs': 360,
    +       '3xs': 480,
    +       '2xs': 600,
    +       'xs': 768,
    +       'sm': 834,
    +       'md': 1024,
    +       'lg': 1280,
    +       'xl': 1440,
    +       '2xl': 1600,
    +       '3xl': 1920,
    +       '4xl': 2560
    +   }
    }
  • Rename config.keyframes to config.animations #268 2895a1c by @BenSeage

    export default {
    -   keyframes: {
    +   animations: {
            slideIn: { to: { ... }, from: { ... } }
        }
    }

Bug Fixes

CSS
  • Generates incorrect keyframes rule 7d4160f