Sharkey/packages/frontend/src/components/global/MkSpacer.vue

53 lines
980 B
Vue
Raw Normal View History

2021-10-14 14:55:59 +03:00
<template>
<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 } 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
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%;
}
.rootMin {
padding: v-bind('props.marginMin + "px"') !important;
}
2021-10-14 14:55:59 +03:00
.content {
margin: 0 auto;
max-width: v-bind('props.contentMax + "px"');
container-type: inline-size;
2021-10-14 14:55:59 +03:00
}
2023-01-07 04:49:04 +02:00
@container (max-width: 450px) {
.root {
padding: v-bind('props.marginMin + "px"');
}
}
2023-01-07 04:49:04 +02:00
@container (min-width: 451px) {
.root {
padding: v-bind('props.marginMax + "px"');
}
}
2021-10-14 14:55:59 +03:00
</style>