chore: apply cannonical tailwind

This commit is contained in:
2026-05-06 13:36:49 +02:00
parent 3c1215655e
commit be71a34908
4 changed files with 5 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ const toastContainer = () => {
if (!container) {
container = document.createElement('div');
container.id = 'toast-container';
container.className = 'fixed bottom-4 right-4 z-[100] flex flex-col gap-2';
container.className = 'fixed bottom-4 right-4 z-100 flex flex-col gap-2';
document.body.appendChild(container);
}
return container;