Skip to content

Commit

Permalink
fix: don't rely on third party for minireset
Browse files Browse the repository at this point in the history
  • Loading branch information
katlyn committed Oct 12, 2024
1 parent 7781bc0 commit c272e89
Show file tree
Hide file tree
Showing 7 changed files with 407 additions and 281 deletions.
79 changes: 42 additions & 37 deletions public/letter.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/letter.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@import url("/lexend/lexend.css");
@import url("https://cdn.jsdelivr.net/gh/jgthms/minireset.css@master/minireset.min.css");
@import url("/minireset.css");

:root {
--peach: #efc4df;
Expand Down
77 changes: 77 additions & 0 deletions public/minireset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 100%;
font-weight: normal
}

ul {
list-style: none
}

button,
input,
select {
margin: 0
}

html {
box-sizing: border-box
}

*,
*::before,
*::after {
box-sizing: inherit
}

img,
video {
height: auto;
max-width: 100%
}

iframe {
border: 0
}

table {
border-collapse: collapse;
border-spacing: 0
}

td,
th {
padding: 0
}
Loading

0 comments on commit c272e89

Please sign in to comment.