keanu-weblite/src/components/RoundedDialog.vue
N-Pex a28ef2e6d8 Add confirmation for ban/make admin etc
Also, fix Firefox problem with dialog jumping around.
2025-06-10 16:23:35 +02:00

14 lines
264 B
Vue

<template>
<v-dialog v-bind="{ ...$props, ...$attrs }" content-class="v-dialog-rounded" scroll-strategy="none">
<slot></slot>
</v-dialog>
</template>
<script>
export default {
};
</script>
<style lang="scss">
@use "@/assets/css/chat.scss" as *;
</style>