Fix logo on small screens
All checks were successful
Deploy / build-and-publish (push) Successful in 1m8s
Deploy / deploy (push) Successful in 12s

This commit is contained in:
2024-09-28 23:08:52 +03:00
parent 567dc7c377
commit 47f367c96b
5 changed files with 62 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ import Telegram from "$lib/icons/Telegram.svelte";
import Linkedin from "$lib/icons/Linkedin.svelte";
import MaterialSymbolsStarRounded from '~icons/material-symbols/star-rounded';
export let starCount: number;
export let starCount: number | null;
let logo: HTMLElement;
onMount(async () => {
@@ -101,8 +101,9 @@ const goTop = () => {
.hero__logo-wrapper {
min-width: 64px;
min-height: 64px;
width: 256px;
height: 256px;
max-width: 256px;
height: 25vh;
aspect-ratio: 1;
}
.hero__logo {