Skip to content

Commit

Permalink
Prettify html files
Browse files Browse the repository at this point in the history
  • Loading branch information
leroykorterink committed Oct 6, 2023
1 parent 7817293 commit bd8b322
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 50 deletions.
36 changes: 14 additions & 22 deletions packages/react-animation/playwright/index.html
Original file line number Diff line number Diff line change
@@ -1,26 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Testing Page</title>
<style>
:root {
--min-width-480: (min-width: 480px);
}
</style>
</head>

<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Testing Page</title>
<style>
:root {
--min-width-480: (min-width: 480px);
}
</style>
</head>

<body>
<div id="root"></div>
<script
type="module"
src="./index.tsx"
></script>
</body>

<body>
<div id="root"></div>
<script type="module" src="./index.tsx"></script>
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,14 @@
// Need to set `global` because @storybook/react-vite uses `global` in some places
window.global = window;
</script>
<link
href="./bootstrap.min.css"
rel="stylesheet"
/>
<link href="./bootstrap.min.css" rel="stylesheet" />
<style>
@media (prefers-color-scheme: dark) {
html {
/* Don't let the user theme affect the "canvas", only the Storybook UI
background: white;*/
background: #1B1C1D;
background: #1b1c1d;
color: white;
}
}
</style>
</style>
36 changes: 14 additions & 22 deletions packages/react-transition-presence/playwright/index.html
Original file line number Diff line number Diff line change
@@ -1,26 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Testing Page</title>
<style>
:root {
--min-width-480: (min-width: 480px);
}
</style>
</head>

<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Testing Page</title>
<style>
:root {
--min-width-480: (min-width: 480px);
}
</style>
</head>

<body>
<div id="root"></div>
<script
type="module"
src="./index.tsx"
></script>
</body>

<body>
<div id="root"></div>
<script type="module" src="./index.tsx"></script>
</body>
</html>

0 comments on commit bd8b322

Please sign in to comment.