Started to write about internship at hachinohe

This commit is contained in:
2025-04-03 00:37:04 +02:00
parent 51d2aa88b7
commit ba2c95f370
4 changed files with 55 additions and 2 deletions

View File

@@ -0,0 +1,25 @@
<template>
<div class="doubleRowHolder">
<slot></slot>
</div>
</template>
<script setup>
</script>
<style scoped>
.doubleRowHolder{
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
.doubleRowHolder > *{
min-width: 150px;
flex-basis: 45%;
flex: 1;
max-width: 49%;
}
</style>