Skip to content

Commit

Permalink
All works. learn source map error and fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
Furkan Sahin committed Jul 21, 2022
1 parent 0102972 commit 037bbf3
Show file tree
Hide file tree
Showing 15 changed files with 505 additions and 379 deletions.
241 changes: 241 additions & 0 deletions dist/assets/index.bba5120c.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/assets/index.ed9081f6.css

Large diffs are not rendered by default.

38 changes: 38 additions & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="en" data-theme="light" class="">

<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width,initial-scale=1'>

<title>PT Manager</title>

<link rel='icon' type='image/png' href='./favicon.png'>

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/svelte-material-ui@4.2.0/bare.min.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />

<!-- Load the Svelte output -->


<!-- Set initial theme the theme -->
<script>
if ("theme" in localStorage) {
document.documentElement.setAttribute('data-theme', localStorage.theme)
}
else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
localStorage.theme = 'dark'
document.documentElement.setAttribute('data-theme', 'dark')
}
else
localStorage.theme = 'light'
</script>
<script type="module" crossorigin src="/assets/index.bba5120c.js"></script>
<link rel="stylesheet" href="/assets/index.ed9081f6.css">
</head>

<body>
</body>

</html>
Loading

0 comments on commit 037bbf3

Please sign in to comment.