new components

This commit is contained in:
2026-02-05 22:34:39 +00:00
parent aebf37c025
commit fbca89128e
17 changed files with 123 additions and 40 deletions

View File

@@ -5,8 +5,7 @@ import CreatePost from "@/components/admin/CreatePost.vue";
</script>
<template>
<main class="items-center flex flex-col">
<div class="background halftone" />
<main class="halftone justify-center flex flex-row w-full h-full">
<div class="a5page-portrait bdr-1 flex flex-col">
<Login class="bdr-2 bg-bg_primary" />
<!--

View File

@@ -240,16 +240,18 @@ const links = [
</script>
<template>
<main class="items-center flex flex-col">
<div class="background halftone" />
<main class="items-center flex flex-col halftone">
<div
class="a4page-portrait bdr-1 flex flex-col relative overflow-scroll gap-1"
class="a4page-portrait bdr-1 flex flex-row flex-wrap overflow-x-auto gap-1"
>
<ToggleLinkTable
v-for="link in links"
:title="link[0]"
:linkArr="link[1]"
/>
<div class="w-full h-fit">
<ToggleLinkTable
class="flex flex-col flex-wrap"
v-for="link in links"
:title="link[0]"
:linkArr="link[1]"
/>
</div>
</div>
</main>
</template>