mirror of
https://github.com/LJ5O/website.git
synced 2026-08-11 22:54:46 +02:00
21 lines
339 B
Vue
21 lines
339 B
Vue
<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> |