Skip to content

Commit

Permalink
Merge pull request #9 from wilyJ80/main
Browse files Browse the repository at this point in the history
Adicionar configurações de estilo para a página
  • Loading branch information
Skaylan authored Jan 18, 2024
2 parents 3225e0f + a87aa42 commit b4c0117
Showing 1 changed file with 20 additions and 9 deletions.
29 changes: 20 additions & 9 deletions src/app.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>

<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
</head>

<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>

<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
</style>

</html>

0 comments on commit b4c0117

Please sign in to comment.