28 lines
365 B
Vue
28 lines
365 B
Vue
|
<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>
|