made contacts page

This commit is contained in:
Fedor Katurov 2022-11-10 16:21:06 +06:00
parent 884b2ea507
commit 623fa7b7fd
16 changed files with 346 additions and 25 deletions

View file

@ -0,0 +1,15 @@
<template>
<div :class="[$attrs.class, $style.buttons]">
<slot />
</div>
</template>
<script lang="ts" setup></script>
<style lang="scss" module>
.buttons {
& > * {
margin: 0 15px 15px 0;
}
}
</style>