Fix:Show toasts below appbar & toolbar #819

This commit is contained in:
advplyr 2022-07-12 16:11:23 -05:00
parent 2b91bff1af
commit 21e704e12c
3 changed files with 34 additions and 1 deletions

View file

@ -225,4 +225,18 @@ Bookshelf Label
-webkit-line-clamp: 2;
/* number of lines to show */
-webkit-box-orient: vertical;
}
/* Padding for toastification toasts in the top right to not cover appbar/toolbar */
.app-bar-and-toolbar .Vue-Toastification__container.top-right {
padding-top: 104px;
}
.app-bar .Vue-Toastification__container.top-right {
padding-top: 64px;
}
.no-bars .Vue-Toastification__container.top-right {
padding-top: 8px;
}