Skip to content

Commit

Permalink
fix: add reset.css to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
VojtechVidra committed Jan 12, 2024
1 parent 19981bf commit 82c6f45
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/arrow/arrow.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Arrow</title>
<link rel="stylesheet" href="/tests/reset.css" />
<link rel="stylesheet" href="/public/flows.css" />
</head>
<body style="margin: 0">
Expand Down
35 changes: 35 additions & 0 deletions tests/reset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
*,
*::before,
*::after {
box-sizing: border-box;
}
* {
margin: 0;
}
body {
line-height: 1.5;
-webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
display: block;
max-width: 100%;
}
input,
button,
textarea,
select {
font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}

0 comments on commit 82c6f45

Please sign in to comment.