2024-05-30 18:06:50 +07:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div class="page_container full-size-page">
|
2024-06-12 17:17:49 +07:00
|
|
|
<div class="container-long my-5">
|
2024-05-30 18:06:50 +07:00
|
|
|
<slot />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.page_container {
|
|
|
|
|
&.full-size-page {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.full-size-layout {
|
|
|
|
|
padding-left: 20px;
|
|
|
|
|
padding-right: 20px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.layout_container {
|
|
|
|
|
padding-top: 40px;
|
|
|
|
|
padding-bottom: 40px;
|
|
|
|
|
|
|
|
|
|
&.center-layout {
|
|
|
|
|
max-width: 1300px;
|
|
|
|
|
margin: auto;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|