mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
23 lines
489 B
SCSS
23 lines
489 B
SCSS
:host {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
margin: 0.5em;
|
|
z-index: 1200;
|
|
}
|
|
|
|
.toast:not(.show) {
|
|
display: block; // this corrects an ng-bootstrap bug that prevented animations
|
|
}
|
|
|
|
::ng-deep .toast.error .toast-header {
|
|
background-color: hsla(350, 79%, 40%, 0.8); // bg-danger
|
|
border-color: black;
|
|
}
|
|
|
|
::ng-deep .toast.error .toast-body {
|
|
background-color: hsla(350, 79%, 40%, 0.8); // bg-danger
|
|
border-bottom-left-radius: inherit;
|
|
border-bottom-right-radius: inherit;
|
|
}
|