mirror of
https://github.com/remvze/moodist.git
synced 2026-03-09 13:33:13 +08:00
21 lines
400 B
CSS
21 lines
400 B
CSS
.wrapper {
|
|
position: fixed;
|
|
z-index: 100;
|
|
bottom: 20px;
|
|
left: 0;
|
|
width: 100%;
|
|
pointer-events: none;
|
|
|
|
& .snackbar {
|
|
width: max-content;
|
|
max-width: 90%;
|
|
padding: 12px 16px;
|
|
border: 1px solid var(--color-neutral-300);
|
|
border-radius: 4px;
|
|
margin: 0 auto;
|
|
background-color: var(--color-neutral-200);
|
|
font-size: var(--font-sm);
|
|
pointer-events: fill;
|
|
}
|
|
}
|