Releases: mayank99/reset.css
Releases · mayank99/reset.css
v0.11.0
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
What's Changed
- add resets for
popover
(#18)
- handle
<dialog popover>
(#18)
- add
user-select: none
to .visually-hidden
(297b67b)
v0.9.0
What's Changed
- add resets for
dialog
element (#17)
- add
scrollbar-gutter: stable
to root
v0.8.0
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
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
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
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
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;
}