website/components/ProjectList.vue

27 lines
337 B
Vue
Raw Normal View History

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