add new gopher as project image

This commit is contained in:
Maxi Quoß
2023-03-08 21:02:22 +01:00
parent 327b47c2a1
commit 1b299aa3a3
7 changed files with 124 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
<div align="center" width="100%"> <div align="center" width="100%">
<img src="frontend/static/favicon.png" width="128" /> <img src="frontend/static/gopher.svg" width="150" />
</div> </div>
<div align="center" width="100%"> <div align="center" width="100%">

Binary file not shown.

View File

@@ -2,10 +2,11 @@
<html lang="en" class="h-100"> <html lang="en" class="h-100">
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" /> <link rel="icon" href="%sveltekit.assets%/gopher.svg" />
<meta name="viewport" content="width=device-width" /> <meta name="viewport" content="width=device-width" />
%sveltekit.head% %sveltekit.head%
</head> </head>
<body data-sveltekit-preload-data="hover" class="h-100"> <body data-sveltekit-preload-data="hover" class="h-100">
<div style="display: contents">%sveltekit.body%</div> <div style="display: contents">%sveltekit.body%</div>
</body> </body>

View File

@@ -43,7 +43,7 @@
<div class="container text-dark-emphasis"> <div class="container text-dark-emphasis">
<div class="row justify-content-center align-items-center"> <div class="row justify-content-center align-items-center">
<div class="col text-center p-3 p-md-5"> <div class="col text-center p-3 p-md-5">
<img src="/favicon.png" alt="Logo" class="logo pe-none user-select-none" /> <img src="/gopher.svg" alt="Logo" class="logo pe-none user-select-none" />
<h2 class="text-dark-emphasis fw-bold text-center mt-3">Login</h2> <h2 class="text-dark-emphasis fw-bold text-center mt-3">Login</h2>
</div> </div>
</div> </div>
@@ -98,9 +98,9 @@
<style lang="scss"> <style lang="scss">
.logo { .logo {
width: 100%; width: 40%;
min-width: 50px; min-width: 50px;
max-width: 100px; max-width: 200px;
} }
.cursor-pointer { .cursor-pointer {

View File

@@ -49,14 +49,14 @@
{/if} {/if}
</svelte:head> </svelte:head>
<nav class="navbar navbar-expand-sm"> <nav class="navbar navbar-expand-sm pt-0">
<div class="container-fluid"> <div class="container-fluid">
<a class="navbar-brand" href="/"> <a class="navbar-brand" href="/">
<img <img
src="/favicon.png" src="/gopher.svg"
alt="UpSnap" alt="UpSnap"
width="30" width="45"
height="30" height="45"
class:me-2={$settings.website_title !== ''} class:me-2={$settings.website_title !== ''}
/>{$settings.website_title ? $settings.website_title : ''} />{$settings.website_title ? $settings.website_title : ''}
</a> </a>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.5 KiB

114
frontend/static/gopher.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 54 KiB