mirror of
https://github.com/mue/mue.git
synced 2026-07-15 21:13:54 +02:00
42 lines
759 B
SCSS
42 lines
759 B
SCSS
@use 'variables' as *;
|
|
|
|
.Toastify__toast-body {
|
|
font-size: 16px !important;
|
|
padding: 15px 20px !important;
|
|
}
|
|
|
|
.Toastify__toast {
|
|
border-radius: 12px !important;
|
|
height: auto !important;
|
|
width: auto !important;
|
|
min-width: auto !important;
|
|
padding: 10px !important;
|
|
}
|
|
|
|
.Toastify__close-button {
|
|
align-self: center !important;
|
|
color: var(--modal-text) !important;
|
|
}
|
|
|
|
/* .Toastify__progress-bar--default {
|
|
height: 3px !important;
|
|
background: var(--modal-text) !important;
|
|
color: var(--modal-text) !important;
|
|
} */
|
|
|
|
.Toastify__toast-container {
|
|
width: auto !important;
|
|
}
|
|
|
|
.Toastify__toast--default {
|
|
@extend %basic;
|
|
}
|
|
|
|
.Toastify__toast--info {
|
|
@extend %basic;
|
|
}
|
|
|
|
.Toastify__progress-bar--info {
|
|
background-color: gold !important;
|
|
}
|