Work in progress

This commit is contained in:
Julien Nahum
2023-12-09 15:47:03 +01:00
parent f970557b76
commit 1f853e8178
315 changed files with 34058 additions and 25 deletions

24
client/layouts/basic.vue Normal file
View File

@@ -0,0 +1,24 @@
<template>
<div class="basic-layout flex items-center justify-center m-0">
<slot/>
</div>
</template>
<style lang="scss">
.basic-layout {
color: #636b6f;
height: 100vh;
font-weight: 100;
position: relative;
.links > a {
color: #636b6f;
padding: 0 25px;
font-size: 12px;
font-weight: 600;
letter-spacing: .1rem;
text-decoration: none;
text-transform: uppercase;
}
}
</style>

View File

@@ -0,0 +1,8 @@
<template>
<div class="main-layout min-h-screen flex flex-col">
<!-- <Navbar />-->
<slot class="flex-grow">
</slot>
</div>
</template>