mirror of
https://github.com/EvolutionAPI/evolution-manager.git
synced 2025-07-16 12:12:56 -06:00
23 lines
280 B
Vue
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>
|