Build package

This commit is contained in:
marleyrae 2023-06-19 18:03:35 -07:00
parent b4a0c5831d
commit 1e1c0a579b
2 changed files with 53 additions and 66 deletions

19
dist/reset.css vendored
View file

@ -1,3 +1,4 @@
@layer reset {
/* Box sizing rules */
*,
*::before,
@ -32,7 +33,7 @@ html:focus-within {
/* Set core body defaults */
body {
min-height: 100vh;
min-block-size: 100vb;
text-rendering: optimizeSpeed;
line-height: 1.5;
}
@ -45,7 +46,7 @@ a:not([class]) {
/* Make images easier to work with */
img,
picture {
max-width: 100%;
max-inline-size: 100%;
display: block;
}
@ -56,18 +57,4 @@ textarea,
select {
font: inherit;
}
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
html:focus-within {
scroll-behavior: auto;
}
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}

2
dist/reset.min.css vendored
View file

@ -1 +1 @@
*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}
@layer reset{*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-block-size:100vb;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-inline-size:100%;display:block}input,button,textarea,select{font:inherit}}