diff --git a/locales/de.json b/locales/de.json
index d3a63fb..ae81b65 100644
--- a/locales/de.json
+++ b/locales/de.json
@@ -19,6 +19,7 @@
"minecraft.dataPack.vanilla.description": "Die Standarddaten für Minecraft",
"minecraft.dataPack.update_1_20.description": "Neue Spielelemente und Inhalte für Minecraft 1.20",
+ "footer.legel.note": "KEIN OFFIZIELLES MINECRAFT WERKZEUG. NICHT GENEHMIGT VON ODER VERBUNDEN MIT MOJANG ODER MICROSOFT.",
"footer.about": "Info",
"footer.view_source": "Quellcode",
"footer.report_issue": "Problem Melden",
diff --git a/locales/en.json b/locales/en.json
index 4302f3c..5df029d 100644
--- a/locales/en.json
+++ b/locales/en.json
@@ -19,6 +19,7 @@
"minecraft.dataPack.vanilla.description": "The default data for Minecraft",
"minecraft.dataPack.update_1_20.description": "New features and content for Minecraft 1.20",
+ "footer.legel.note": "NOT AN OFFICIAL MINECRAFT TOOL. NOT APPROVED BY OR ASSOCIATED WITH MOJANG OR MICROSOFT.",
"footer.about": "About",
"footer.view_source": "View Source",
"footer.report_issue": "Report Issue",
diff --git a/src/components/Footer.vue b/src/components/Footer.vue
index 2c5692b..38b643d 100644
--- a/src/components/Footer.vue
+++ b/src/components/Footer.vue
@@ -9,6 +9,7 @@ import LocaleChanger from './LocaleChanger.vue';
Copyright © 2023 jacobsjo
+{{ $t('footer.legel.note') }}
{{ $t('footer.about') }} {{ $t('footer.view_source') }} {{ $t('footer.report_issue') }} @@ -28,14 +29,13 @@ import LocaleChanger from './LocaleChanger.vue'; display: flex; flex-direction: row; flex-wrap: wrap; - height: 2.9rem; gap: 0.5rem; row-gap: 0rem; + height: 6.5rem; } a, p{ color: rgb(179, 179, 179); - height: 0rem; } p { @@ -44,6 +44,11 @@ import LocaleChanger from './LocaleChanger.vue'; margin: 0; } + #note { + font-size: 8pt; + height: 2.8rem; + } + a { text-decoration: underline; }