diff --git a/storefront/app.vue b/storefront/app.vue
index 978334c4..a88ab6bf 100644
--- a/storefront/app.vue
+++ b/storefront/app.vue
@@ -68,12 +68,20 @@ await Promise.all([
watch(
() => appStore.activeState,
(state) => {
- appStore.setOverflowHidden(state !== '')
+ appStore.setOverflowHidden(state !== '');
},
{ immediate: true }
-)
+);
-let stopWatcher: VoidFunction = () => {}
+watch(locale, () => {
+ useHead({
+ htmlAttrs: {
+ lang: locale.value
+ }
+ });
+});
+
+let stopWatcher: VoidFunction = () => {};
onMounted( async () => {
refreshInterval = setInterval(async () => {
diff --git a/storefront/assets/styles/global/variables.scss b/storefront/assets/styles/global/variables.scss
index 81535374..2da17eb4 100644
--- a/storefront/assets/styles/global/variables.scss
+++ b/storefront/assets/styles/global/variables.scss
@@ -8,5 +8,6 @@ $accentDark: #5743b5;
$accentLight: #a69cdc;
$accentDisabled: #826fa2;
$accentSmooth: #656bd1;
+$contrast: #FFC107;
$error: #f13838;
$default_border_radius: 4px;
\ No newline at end of file
diff --git a/storefront/components/base/header/index.vue b/storefront/components/base/header/index.vue
index b785e060..edb9a223 100644
--- a/storefront/components/base/header/index.vue
+++ b/storefront/components/base/header/index.vue
@@ -39,7 +39,7 @@
@click="appStore.setActiveState('login')"
v-else
>
-
{{ t('header.actions.login') }}
@@ -47,7 +47,7 @@ class="header__actions-item" @click="appStore.setActiveState('login')" > -{{ t('header.actions.login') }}
@@ -58,8 +58,6 @@ \ No newline at end of file diff --git a/storefront/components/forms/login.vue b/storefront/components/forms/login.vue index 8f324440..bbbf85ea 100644 --- a/storefront/components/forms/login.vue +++ b/storefront/components/forms/login.vue @@ -6,6 +6,7 @@ :placeholder="t('fields.email')" :rules="[isEmail]" v-model="email" + :inputMode="'email'" />settings
+{{ t('profile.settings.joinData') }}: {{ joinData }}
+{{ t('profile.settings.accountInfo') }}
+{{ t('profile.wishlist.total', {quantity: productsInWishlist.length, amount: totalPrice}) }}
- + +