Migrate to Vue.js #28

Merged
jakob.scheid merged 22 commits from feature/migrate-to-vue-js into main 2026-05-07 14:20:13 +02:00
2 changed files with 16 additions and 12 deletions
Showing only changes of commit d454405cb7 - Show all commits
+15 -2
View File
@@ -3,7 +3,20 @@ import Navbar from './features/nav/components/Navbar.vue';
</script> </script>
<template> <template>
<Navbar /> <div class="content-background">
<Navbar />
<router-view /> <router-view />
</div>
</template> </template>
<style>
.content-background {
background:
radial-gradient(ellipse at 40% 60%, rgba(255,255,255,0.55) 0%, transparent 75%),
linear-gradient(160deg, #c8d8f0, #7aa0d8, #5077C7, #dce8f8);
height: 300px;
display: flex;
flex-direction: column;
}
</style>
-9
View File
@@ -5,15 +5,6 @@ body {
font-size: 16px; font-size: 16px;
} }
.content-background {
background:
radial-gradient(ellipse at 40% 60%, rgba(255,255,255,0.55) 0%, transparent 75%),
linear-gradient(160deg, #c8d8f0, #7aa0d8, #5077C7, #dce8f8);
height: 300px;
display: flex;
flex-direction: column;
}
.global-header { .global-header {
text-align: center; text-align: center;
display: flex; display: flex;