From 25a0890edb4aec5212f4fc26040ffbdd415cf210 Mon Sep 17 00:00:00 2001 From: Midou36O Date: Wed, 22 Jun 2022 00:01:35 +0100 Subject: [PATCH] testing github copilot --- src/routes/__layout.svelte | 8 ++++++++ src/routes/contact.svelte | 2 ++ 2 files changed, 10 insertions(+) diff --git a/src/routes/__layout.svelte b/src/routes/__layout.svelte index 99c365a..6789de9 100644 --- a/src/routes/__layout.svelte +++ b/src/routes/__layout.svelte @@ -16,6 +16,14 @@ await loadTranslations(initLocale, pathname); // keep this just before the `return` + // firefox + // https://developer.mozilla.org/en-US/docs/Web/API/Navigator/language + // chrome + // https://developer.chrome.com/extensions/i18n#overview-getAcceptLanguages + // edge + // https://msdn.microsoft.com/en-us/library/hh869301(v=vs.85).aspx + + return {}; } diff --git a/src/routes/contact.svelte b/src/routes/contact.svelte index 549b3a2..281e08e 100644 --- a/src/routes/contact.svelte +++ b/src/routes/contact.svelte @@ -61,6 +61,8 @@ onclick='document.getElementById("Active").style.display ="block"; document.getE align-items: center; } + /* this is a hack to make the grid work, need to improve this */ + .div1 { grid-area: 1 / 1 / 2 / 2; } .div2 { grid-area: 1 / 2 / 2 / 3; } .div3 { grid-area: 1 / 3 / 2 / 4; }