2023-04-16 20:12:24 +03:00
|
|
|
<template>
|
2023-06-24 18:48:18 +03:00
|
|
|
<div>
|
|
|
|
<slot></slot>
|
|
|
|
</div>
|
2023-04-16 20:12:24 +03:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-06-24 18:48:18 +03:00
|
|
|
export default {}
|
2023-04-16 20:12:24 +03:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
2023-06-24 18:48:18 +03:00
|
|
|
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) {
|
2023-06-24 18:48:18 +03:00
|
|
|
div {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2023-04-16 20:12:24 +03:00
|
|
|
}
|
2023-06-11 00:22:06 +03:00
|
|
|
</style>
|