You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-26 22:41:17 +02:00
23 lines
404 B
SCSS
23 lines
404 B
SCSS
|
|
.popup-notification-list {
|
|
display: flex;
|
|
align-items: end;
|
|
flex-direction: column;
|
|
list-style-type: none;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
|
|
&.-overlay {
|
|
// Focus should jump to the bottom item first
|
|
flex-direction: column-reverse;
|
|
|
|
position: absolute;
|
|
bottom: 0;
|
|
inset-inline-end: 0; // right: 0 in ltr, left: 0 in rtl
|
|
z-index: 10;
|
|
|
|
max-height: 100vh;
|
|
overflow-y: auto;
|
|
}
|
|
}
|