website/components/ProjectList.vue

28 lines
365 B
Vue
Raw Normal View History

2023-04-16 20:12:24 +03:00
<template>
<div>
<slot></slot>
</div>
</template>
<script>
export default {
}
</script>
<style scoped>
div{
display: flex;
flex-direction: row;
padding: 20px;
align-items: center;
justify-content: center;
gap: 30px;
}
@media only screen and (max-width: 1121px) {
div {
flex-direction: column;
}
}
</style>