2021-10-14 14:55:59 +03:00
|
|
|
<template>
|
2023-01-03 03:46:56 +02:00
|
|
|
<div :class="[$style.root, { [$style.rootMin]: forceSpacerMin }]">
|
|
|
|
<div :class="$style.content">
|
2021-10-14 14:55:59 +03:00
|
|
|
<slot></slot>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-06-22 10:29:31 +03:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { inject, onMounted, onUnmounted, ref } from 'vue';
|
2022-02-11 15:16:20 +02:00
|
|
|
import { deviceKind } from '@/scripts/device-kind';
|
2021-10-14 14:55:59 +03:00
|
|
|
|
2022-06-22 10:29:31 +03:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
contentMax?: number | null;
|
|
|
|
marginMin?: number;
|
|
|
|
marginMax?: number;
|
|
|
|
}>(), {
|
|
|
|
contentMax: null,
|
|
|
|
marginMin: 12,
|
|
|
|
marginMax: 24,
|
|
|
|
});
|
2021-10-14 14:55:59 +03:00
|
|
|
|
2023-01-03 03:46:56 +02:00
|
|
|
const forceSpacerMin = inject('forceSpacerMin', false) || deviceKind === 'smartphone';
|
2021-10-14 14:55:59 +03:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2023-01-03 03:46:56 +02:00
|
|
|
.rootMin {
|
|
|
|
padding: v-bind('props.marginMin + "px"') !important;
|
|
|
|
}
|
2021-10-14 14:55:59 +03:00
|
|
|
|
|
|
|
.content {
|
|
|
|
margin: 0 auto;
|
2023-01-03 03:46:56 +02:00
|
|
|
max-width: v-bind('props.contentMax + "px"');
|
2022-12-26 01:40:13 +02:00
|
|
|
container-type: inline-size;
|
2021-10-14 14:55:59 +03:00
|
|
|
}
|
2023-01-03 03:46:56 +02:00
|
|
|
|
|
|
|
@container (max-width: 360px) {
|
|
|
|
.root {
|
|
|
|
padding: v-bind('props.marginMin + "px"');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@container (min-width: 361px) {
|
|
|
|
.root {
|
|
|
|
padding: v-bind('props.marginMax + "px"');
|
|
|
|
}
|
|
|
|
}
|
2021-10-14 14:55:59 +03:00
|
|
|
</style>
|