Skip to content

v53.0.0

Compare
Choose a tag to compare
@cozy-bot cozy-bot released this 28 Sep 10:37
· 1988 commits to master since this release

53.0.0 (2021-09-28)

Features

BREAKING CHANGES

  • Deleting the layout prop & mobile style associated

    • If you were not using the layout prop or if it was set to true on the Empty component, to get the previous centering, then you will need to add the following style on the Empty component:
    @require 'settings/breakpoints'
    
    +small-screen()
        margin-top: calc(50vh - 6rem);
        transform: translateY(-50%);
    
    • If you were using the layout prop at false, you can simply delete the prop that is no longer needed