Skip to content

Releases: mayank99/reset.css

v0.11.0

29 Nov 02:03
3dc89fa
Compare
Choose a tag to compare

What's Changed

  • make form controls inherit letter-spacing, word-spacing, font-feature-settings and font-variation-settings
  • combine <dialog> and [popover] resets; also unset overflow.
  • add interpolate-size to root
  • move line-height to <html> and inherit it on <body>
  • combine cursor: not-allowed styles

Full diff: v0.10.0...v0.11.0

v0.10.0

16 May 00:41
Compare
Choose a tag to compare

What's Changed

  • add resets for popover (#18)
  • handle <dialog popover> (#18)
  • add user-select: none to .visually-hidden (297b67b)

v0.9.0

12 Apr 18:46
Compare
Choose a tag to compare

What's Changed

  • add resets for dialog element (#17)
  • add scrollbar-gutter: stable to root

v0.8.0

26 Sep 23:59
Compare
Choose a tag to compare

What's Changed

  • remove all button styles in #14
  • use redesigned dual focus indicator in #15
  • add scroll-margin to :target in #16
  • set tab-size on root in c88607

Full Changelog: v0.7.0...v0.8.0

v0.7.0

03 Sep 16:29
0532d8f
Compare
Choose a tag to compare

What's Changed

  • add text-wrap: balance to main headings in #12
  • add missing max-width for video in #13
  • update license in f4878ac

Full Changelog: v0.6.0...v0.7.0

v0.6.0

02 Aug 23:21
e788c95
Compare
Choose a tag to compare

What's Changed

  • remove height from html/body in #6
  • remove .not-visually-hidden class in #7
  • remove --focus-color variable and increase outline-width in #8
  • make links inherit color in #9
  • add scroll-margin for focused elements in #10

Full Changelog: v0.5.3...v0.6.0

v0.5.3

23 Oct 23:17
Compare
Choose a tag to compare

Fixed percentage sizes on body. When an element inside body specifies block-size: 100%, it doesn't take up the full available space when the body has min-block-height but does when it has block-height.

v0.5.2

23 Oct 16:42
Compare
Choose a tag to compare

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;
}

v0.4.3

23 Oct 10:44
Compare
Choose a tag to compare

Fixed some selectors (6c9c257)

v0.4.2

23 Oct 02:22
Compare
Choose a tag to compare

Fix typo in textarea selector by @BenDMyers in #1 🎉