fixed formatting

This commit is contained in:
John O'Keefe 2025-01-25 19:17:42 -05:00
parent dde5d20537
commit 18c744c1cf
2 changed files with 20 additions and 13 deletions

View File

@ -1,4 +1,4 @@
<!DOCTYPE html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
@ -8,6 +8,9 @@
<body> <body>
<div id="app"></div> <div id="app"></div>
<script src="./src/main.ts" type="module"></script> <script src="./src/main.ts" type="module"></script>
<script src="./node_modules/flowbite/dist/flowbite.js"></script> <script
src="./node_modules/flowbite/dist/flowbite.js"
type="module"
></script>
</body> </body>
</html> </html>

View File

@ -38,6 +38,7 @@
} from "../../wailsjs/go/main/App"; } from "../../wailsjs/go/main/App";
import { AddAnimeServiceToTable } from "../helperModules/AddAnimeServiceToTable.svelte"; import { AddAnimeServiceToTable } from "../helperModules/AddAnimeServiceToTable.svelte";
import { CheckIfAniListLoggedInAndLoadWatchList } from "../helperModules/CheckIfAniListLoggedInAndLoadWatchList.svelte"; import { CheckIfAniListLoggedInAndLoadWatchList } from "../helperModules/CheckIfAniListLoggedInAndLoadWatchList.svelte";
import Datepicker from "./Datepicker.svelte";
let isAniListLoggedIn: boolean; let isAniListLoggedIn: boolean;
let isMalLoggedIn: boolean; let isMalLoggedIn: boolean;
@ -413,6 +414,7 @@
} }
</script> </script>
/B
<form on:submit|preventDefault={handleSubmit} class="container pt-3 pb-10"> <form on:submit|preventDefault={handleSubmit} class="container pt-3 pb-10">
<h1 class="text-white font-bold text-left text-xl pb-3"> <h1 class="text-white font-bold text-left text-xl pb-3">
{title} {title}
@ -483,8 +485,9 @@
1) 1)
? 'border-red-500 border-[2px] text-rose-300 focus:ring-red-500 focus:border-red-500' ? 'border-red-500 border-[2px] text-rose-300 focus:ring-red-500 focus:border-red-500'
: 'bg-gray-700 hover:bg-gray-600 border-gray-600 text-white focus:ring-blue-500 focus:border-blue-500'} w-24" : 'bg-gray-700 hover:bg-gray-600 border-gray-600 text-white focus:ring-blue-500 focus:border-blue-500'} w-24"
bind:value={currentAniListAnime.data.MediaList bind:value={
.progress} currentAniListAnime.data.MediaList.progress
}
required required
/> />
<button <button
@ -582,6 +585,7 @@
value={startedAtDate} value={startedAtDate}
placeholder="Date Started" placeholder="Date Started"
/> />
<Datepicker showActionButtons />
</div> </div>
</div> </div>
<div> <div>