mirror of
https://github.com/muerwre/muerwre.github.io.git
synced 2025-04-24 18:36:41 +07:00
19 lines
365 B
Vue
19 lines
365 B
Vue
<template>
|
|
<div :class="[$attrs.class, $style.buttons]">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup></script>
|
|
|
|
<style lang="scss" module>
|
|
@import "@/assets/css/main.scss";
|
|
|
|
.buttons {
|
|
display: flex;
|
|
gap: 16px;
|
|
align-items: flex-start;
|
|
justify-content: flex-start;
|
|
grid-template-columns: repeat(auto-fit, minmax(180px, auto));
|
|
}
|
|
</style>
|