New Laravel Project
Some checks failed
tests / ci (8.4) (push) Failing after 1m49s
tests / ci (8.5) (push) Failing after 1m50s
linter / quality (push) Successful in 1m44s
tests / ci (8.3) (push) Failing after 2m10s

This commit is contained in:
Darius Rapalis
2026-04-28 17:08:26 +03:00
commit 7f6529cd5d
347 changed files with 34958 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<script setup lang="ts">
import { useAppearance } from '@/composables/useAppearance';
import { Toaster as SonnerPrimitive } from 'vue-sonner';
import 'vue-sonner/style.css';
const { appearance } = useAppearance();
</script>
<template>
<SonnerPrimitive
:theme="appearance"
class="toaster group"
position="bottom-right"
:style="{
'--normal-bg': 'var(--popover)',
'--normal-text': 'var(--popover-foreground)',
'--normal-border': 'var(--border)',
}"
/>
</template>