Started to work in projects component

This commit is contained in:
2024-12-03 16:31:37 +01:00
parent 4ceac1ea71
commit 6629f83eb6
3 changed files with 24 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
<script setup lang="ts">
</script>
<template>
<div class="projects">
<h1 id="projects">My projects</h1>
</div>
</template>
<style scoped>
.projects{
width: 100%;
border: 2px green dotted;
display: flex;
justify-content: space-between;
flex-wrap: wrap-reverse;
}
</style>