Skip to content

v0.5.2

Choose a tag to compare

@mayank99 mayank99 released this 23 Oct 16:42
· 37 commits to main since this release

Added support for logical properties!

The main change is to the min-height: 100dvh fallback. This is what the code looks like now:

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}

:where(body) {
  min-block-size: 100%;
  min-block-size: 100dvb;
}