diff options
Diffstat (limited to 'docker/crupest-nginx/sites/www/src')
-rw-r--r-- | docker/crupest-nginx/sites/www/src/main.ts | 2 | ||||
-rw-r--r-- | docker/crupest-nginx/sites/www/src/style.css | 3 | ||||
-rw-r--r-- | docker/crupest-nginx/sites/www/src/todos.ts | 4 |
3 files changed, 4 insertions, 5 deletions
diff --git a/docker/crupest-nginx/sites/www/src/main.ts b/docker/crupest-nginx/sites/www/src/main.ts index 13553ed..2f09deb 100644 --- a/docker/crupest-nginx/sites/www/src/main.ts +++ b/docker/crupest-nginx/sites/www/src/main.ts @@ -41,7 +41,7 @@ setTimeout(() => { }); const sloganContainer = document.querySelector( - ".slogan-container" + ".slogan-container", ) as HTMLDivElement; setTimeout(() => { diff --git a/docker/crupest-nginx/sites/www/src/style.css b/docker/crupest-nginx/sites/www/src/style.css index 079f7b9..1f9c9ed 100644 --- a/docker/crupest-nginx/sites/www/src/style.css +++ b/docker/crupest-nginx/sites/www/src/style.css @@ -93,7 +93,6 @@ a.mono { animation: avatar-enter 0.5s 1s forwards; } - .slogan-container { width: 100%; position: fixed; @@ -183,4 +182,4 @@ a.mono { display: block; text-align: center; font-size: 1.2em; -}
\ No newline at end of file +} diff --git a/docker/crupest-nginx/sites/www/src/todos.ts b/docker/crupest-nginx/sites/www/src/todos.ts index 5e36875..b69f524 100644 --- a/docker/crupest-nginx/sites/www/src/todos.ts +++ b/docker/crupest-nginx/sites/www/src/todos.ts @@ -18,10 +18,10 @@ export async function fetchTodos(): Promise<Todo[]> { if (res.status !== 200) { console.error( - `Failed to get TODOs. Status: ${res.status}. Body: ${body}` + `Failed to get TODOs. Status: ${res.status}. Body: ${body}`, ); throw new Error( - "Failed to fetch TODOs. (Maybe due to rate limit. Please try later.)" + "Failed to fetch TODOs. (Maybe due to rate limit. Please try later.)", ); } return body; |