mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
try adding playlists list to context menu - unsuccsessfully
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
<template>
|
||||
<div class="new-notification rounded" v-if="store.visible">
|
||||
<div>{{ store.text }}</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { useNotificationStore } from "../stores/notification";
|
||||
const store = useNotificationStore();
|
||||
</script>
|
||||
<style lang="scss">
|
||||
.new-notification {
|
||||
position: fixed;
|
||||
z-index: 2000;
|
||||
width: 25rem;
|
||||
bottom: 2rem;
|
||||
padding: $small;
|
||||
left: 50%;
|
||||
translate: -50%;
|
||||
background-color: rgb(5, 62, 168);
|
||||
display: grid;
|
||||
place-items: center;
|
||||
|
||||
.link {
|
||||
font-weight: bold;
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user