Skip to content
This repository has been archived by the owner on Aug 12, 2023. It is now read-only.

Properly reset css based on https://meyerweb.com/eric/tools/css/reset/ #2

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,13 @@ export const reset = {
quotes: "none",
},
"blockquote:before, blockquote:after, q:before, q:after": {
content: "",
// @ts-ignore
content: "none",
content: "''",
"@supports (content: none)": {
content: "none",
}
},
table: {
borderCollapse: "collapse",
borderSpacing: "0",
},
};