Skip to content

Commit

Permalink
Give all templates same backgroundcolor
Browse files Browse the repository at this point in the history
  • Loading branch information
BurnySc2 committed May 4, 2024
1 parent e984803 commit c009505
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fastapi_server/templates/audiobook/epub_upload.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</head>

<body id="body">
<div class="flex flex-col h-screen justify-center items-center bg-gray-200">
<div class="flex flex-col h-screen justify-center items-center bg-gray-300">
<img id="spinner" class="htmx-indicator" src="/static/spinner.svg" />
<form class="flex flex-col gap-4 items-center place-items-center justify-items-center text-center"
enctype="multipart/form-data" hx-post="/twitch/audiobook/epub" hx-trigger="submit" hx-target="#body"
Expand Down
2 changes: 1 addition & 1 deletion fastapi_server/templates/login/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</head>


<body class="flex flex-col items-center justify-center h-screen bg-gray-400 gap-4">
<body class="flex flex-col items-center justify-center h-screen bg-gray-300 gap-4">
{% if twitch_user == None and github_user == None %}
<a href="/login/twitch" class="border-black rounded border-4 p-2">
Login with twitch
Expand Down
2 changes: 1 addition & 1 deletion fastapi_server/templates/tts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
});
</script>
</head>
<body class="flex flex-col h-screen justify-center items-center bg-gray-200">
<body class="flex flex-col h-screen justify-center items-center bg-gray-300">
<form
hx-post="/tts/generate_mp3"
hx-target="#audio"
Expand Down

0 comments on commit c009505

Please sign in to comment.