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;
|
2023-05-07 15:52:31 +03:00
|
|
|
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>
|