refactor(client): use css modules

This commit is contained in:
syuilo 2023-01-15 08:07:11 +09:00
parent bb5d2bda51
commit c1b6378951
1 changed files with 7 additions and 7 deletions

View File

@ -1,27 +1,27 @@
<template>
<div class="terlnhxf">
<div :class="$style.root">
<slot></slot>
</div>
</template>
<script lang="ts" setup>
import { provide } from 'vue';
const props = withDefaults(defineProps<{
minWidth?: number;
}>(), {
minWidth: 210,
});
provide('splited', true);
const minWidth = props.minWidth + 'px';
</script>
<style lang="scss" scoped>
.terlnhxf {
<style lang="scss" module>
.root {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(v-bind('minWidth'), 1fr));
grid-gap: 12px;
> ::v-deep(*) {
margin: 0 !important;
}
}
</style>