fix: scss

This commit is contained in:
MoreStrive
2024-05-31 17:08:43 +07:00
parent 27b57f394f
commit 66ac28b468
@@ -3,7 +3,7 @@ import DynamicComponent from "~/components/dynamic-page/page-component/templates
import DynamicSection from "~/components/dynamic-page/page-section/templates/index.vue";
const props = defineProps<{
type: string;
type: string;
id: any;
}>();
@@ -57,5 +57,13 @@ const findDataPosition = computed(() => {
</template>
<style lang="scss" scoped>
</style>
.collection-container {
&.vertical {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
&.horizontal {
grid-template-rows: auto;
grid-auto-flow: column;
}
}
</style>