2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2021-10-14 11:55:59 +00:00
|
|
|
<template>
|
2023-01-03 01:46:56 +00:00
|
|
|
<div :class="[$style.root, { [$style.rootMin]: forceSpacerMin }]">
|
|
|
|
<div :class="$style.content">
|
2021-10-14 11:55:59 +00:00
|
|
|
<slot></slot>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-06-22 07:29:31 +00:00
|
|
|
<script lang="ts" setup>
|
2023-02-16 14:09:41 +00:00
|
|
|
import { inject } from 'vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { deviceKind } from '@/scripts/device-kind.js';
|
2021-10-14 11:55:59 +00:00
|
|
|
|
2022-06-22 07:29:31 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
contentMax?: number | null;
|
|
|
|
marginMin?: number;
|
|
|
|
marginMax?: number;
|
|
|
|
}>(), {
|
|
|
|
contentMax: null,
|
|
|
|
marginMin: 12,
|
|
|
|
marginMax: 24,
|
|
|
|
});
|
2021-10-14 11:55:59 +00:00
|
|
|
|
2023-01-03 01:46:56 +00:00
|
|
|
const forceSpacerMin = inject('forceSpacerMin', false) || deviceKind === 'smartphone';
|
2021-10-14 11:55:59 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2023-01-03 01:46:56 +00:00
|
|
|
.rootMin {
|
|
|
|
padding: v-bind('props.marginMin + "px"') !important;
|
|
|
|
}
|
2021-10-14 11:55:59 +00:00
|
|
|
|
|
|
|
.content {
|
|
|
|
margin: 0 auto;
|
2023-01-03 01:46:56 +00:00
|
|
|
max-width: v-bind('props.contentMax + "px"');
|
2022-12-25 23:40:13 +00:00
|
|
|
container-type: inline-size;
|
2021-10-14 11:55:59 +00:00
|
|
|
}
|
2023-01-03 01:46:56 +00:00
|
|
|
|
2023-01-07 02:49:04 +00:00
|
|
|
@container (max-width: 450px) {
|
2023-01-03 01:46:56 +00:00
|
|
|
.root {
|
|
|
|
padding: v-bind('props.marginMin + "px"');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-07 02:49:04 +00:00
|
|
|
@container (min-width: 451px) {
|
2023-01-03 01:46:56 +00:00
|
|
|
.root {
|
|
|
|
padding: v-bind('props.marginMax + "px"');
|
|
|
|
}
|
|
|
|
}
|
2021-10-14 11:55:59 +00:00
|
|
|
</style>
|