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; }