diff --git a/components/TheBottomMenu.vue b/components/TheBottomMenu.vue
index 215e0ad..b119933 100644
--- a/components/TheBottomMenu.vue
+++ b/components/TheBottomMenu.vue
@@ -38,24 +38,21 @@ const route = useRoute()
const router = useRouter()
function onClick(item: BottomMenuItem) {
- router.push(item.to || '/')
+ // router.push(item.to || '/')
+ router.replace(item.to || '/')
}
-
+
-
-
diff --git a/layouts/default.vue b/layouts/default.vue
index 7c246d4..d6cb240 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -1,5 +1,5 @@
-
+
diff --git a/package.json b/package.json
index 210ffcc..35de6f5 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"type": "module",
- "version": "1.1.6",
+ "version": "1.1.7",
"private": true,
"packageManager": "pnpm@8.10.2",
"engines": {
diff --git a/styles/css-vars.scss b/styles/css-vars.scss
index 1f41c73..7690243 100644
--- a/styles/css-vars.scss
+++ b/styles/css-vars.scss
@@ -22,3 +22,9 @@
.dark {
--ylf-c-border: #666;
}
+
+// cook custom
+:root {
+ --cook-bottom-menu-padding-bottom: 20px;
+ --cook-bottom-menu-height: calc(64px + var(--cook-bottom-menu-padding-bottom));
+}