Files
ShopSolution-frontend/src/app/shared/components/ui/snackbar-container/snackbar-container.component.css
2025-09-09 17:54:23 +02:00

18 lines
418 B
CSS

/* src\app\shared\snackbar\components\snackbar-container\snackbar-container.component.css */
/* Stile, die NUR für den Container gelten */
.snackbar-container-wrapper {
position: fixed;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
z-index: 1050;
width: 350px;
max-width: 90vw;
height: 300px;
pointer-events: none;
}
.snackbar-container-wrapper.position-top {
bottom: auto;
top: 2rem;
}