website/components/ProjectList.vue

29 lines
366 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: 15px;
2023-06-11 00:22:06 +03:00
align-items: center;
2023-04-16 20:12:24 +03:00
justify-content: center;
gap: 30px;
}
@media only screen and (max-width: 1121px) {
div {
flex-direction: column;
}
}
2023-06-11 00:22:06 +03:00
</style>