Files
web_server/vue/src/views/CV/Project.vue
Adam French 461729809e
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 16s
Fixing template by removing margins and spacing nicely
2026-03-27 15:16:43 +00:00

18 lines
429 B
Vue

<script setup></script>
<template>
<div class="flex-row flex">
<div class="w-2/7 mt-auto mb-auto ml-0">
<slot name="left" />
</div>
<div class="w-full p-2">
<div
class="flex-row flex place-content-between m-auto place-items-center"
>
<slot name="top" />
</div>
<slot />
</div>
</div>
</template>