mirror of
https://github.com/LJ5O/website.git
synced 2026-08-11 22:54:46 +02:00
Started to write about internship at hachinohe
This commit is contained in:
25
src/components/doubleRowHolder.vue
Normal file
25
src/components/doubleRowHolder.vue
Normal 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>
|
||||
Reference in New Issue
Block a user