diff --git a/src/locales/lang/en.ts b/src/locales/lang/en.ts index 16be60d6..906a88fc 100644 --- a/src/locales/lang/en.ts +++ b/src/locales/lang/en.ts @@ -408,6 +408,6 @@ const msg = { marketplace: "Marketplace", menus: "Menus", saveReload: "Save and reload the page", - document: "Document", + document: "Documentation", }; export default msg; diff --git a/src/locales/lang/es.ts b/src/locales/lang/es.ts index 2ab8bf1a..f667740b 100644 --- a/src/locales/lang/es.ts +++ b/src/locales/lang/es.ts @@ -407,6 +407,6 @@ const msg = { marketplace: "Marketplace", menus: "Menus", saveReload: "Save and reload the page", - document: "Document", + document: "Documentation", }; export default msg; diff --git a/src/views/marketplace/Menus.vue b/src/views/marketplace/Menus.vue index 7ed47fcb..e97356b9 100644 --- a/src/views/marketplace/Menus.vue +++ b/src/views/marketplace/Menus.vue @@ -25,7 +25,7 @@ limitations under the License. --> >
{{ menu.title }}
{{ menu.description }}
- + {{ t("document") }} @@ -34,7 +34,7 @@ limitations under the License. -->
{{ item.title }}
{{ item.description }}
- + {{ t("document") }}
@@ -70,7 +70,6 @@ limitations under the License. --> padding-left: 20px 30px; width: 100%; height: 100%; - overflow: auto; justify-content: space-between; } @@ -87,6 +86,8 @@ limitations under the License. --> .cards { min-width: 400px; + height: 100%; + overflow: auto; } .item { @@ -100,6 +101,8 @@ limitations under the License. --> flex-wrap: wrap; border-right: 1px solid #ddd; align-content: flex-start; + height: 100%; + overflow: auto; } .link {