1
0
mirror of https://github.com/TeamPiped/Piped.git synced 2024-12-16 23:30:27 +05:30
Piped/src/components/ToastComponent.vue

30 lines
550 B
Vue
Raw Normal View History

2023-03-03 03:26:06 +05:30
<template>
<div class="toast">
<slot />
2023-07-27 17:16:05 +05:30
<button v-t="'actions.dismiss'" @click="dismiss" />
2023-03-03 03:26:06 +05:30
</div>
</template>
<script>
export default {
2023-07-27 17:16:05 +05:30
emits: ["dismissed"],
2023-03-03 03:26:06 +05:30
methods: {
dismiss() {
this.$emit("dismissed");
},
},
};
</script>
<style>
.toast {
2023-03-11 23:25:25 +05:30
@apply bg-white/80 text-black flex flex-col justify-center fixed top-12 right-12 p-4 min-w-max shadow rounded duration-200 z-9999;
}
.dark .toast {
@apply bg-dark-900/80 text-white;
2023-03-03 03:26:06 +05:30
}
.toast button {
@apply underline;
}
</style>