add styles from kontor-api to kontor-vue

This commit is contained in:
Thomas Peetz
2025-08-18 00:06:12 +02:00
parent 976a116799
commit 65f5e4bb2e
18 changed files with 219 additions and 374 deletions
-15
View File
@@ -1,15 +0,0 @@
<template>
<div class="about">
<h1>This is an about page</h1>
</div>
</template>
<style>
@media (min-width: 1024px) {
.about {
min-height: 100vh;
display: flex;
align-items: center;
}
}
</style>
+10 -3
View File
@@ -1,6 +1,13 @@
<script setup lang="ts"></script>
<script setup lang="ts">
</script>
<template>
<div>
<h2>Comics</h2>
<div class="subnav">
<a href="/comic/artists/">Artists</a>
<a href="/comic/publishers/">Publishers</a>
<a href="/comic/worktypes">WorkTypes</a>
</div>
<div> list of comics</div>
</template>
<style lang="css" scoped>
</style>
+1 -2
View File
@@ -1,9 +1,8 @@
<script setup lang="ts">
import TheWelcome from '../components/TheWelcome.vue'
</script>
<template>
<main>
<TheWelcome />
<p>Kontor Application</p>
</main>
</template>