evolution-manager/src/App.vue
Gabriel Pastori 558545e469 muita coisa
2023-11-05 00:41:04 -03:00

23 lines
280 B
Vue

<template>
<router-view />
</template>
<script setup>
//
</script>
<style lang="scss">
@for $i from 0 through 8 {
.gap-x-#{$i} {
column-gap: #{$i * 0.25}rem;
}
.gap-y-#{$i} {
row-gap: #{$i * 0.25}rem;
}
.gap-#{$i} {
gap: #{$i * 0.25}rem;
}
}
</style>