Fix overflowing text in DocumentationLayout.vue.

This commit is contained in:
2025-04-22 15:08:50 -04:00
parent 28e78f6507
commit 9c88b18f60

View File

@@ -3,10 +3,8 @@ import Footer from "@/views/main/Footer.vue";
</script> </script>
<template> <template>
<div class="min-h-screen w-[1024px] bg-hSurface text-hOnSurface p-6"> <div class="min-h-screen w-full max-w-[1024px] mx-auto bg-hSurface text-hOnSurface p-6">
<div> <router-view></router-view>
<router-view></router-view>
</div>
<div> <div>
<Footer></Footer> <Footer></Footer>
</div> </div>