18 lines
418 B
CSS
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;
|
|
} |