fix(app): workspace reset issues
This commit is contained in:
parent
63cd763418
commit
4a73d51acd
2 changed files with 48 additions and 2 deletions
|
|
@ -7,7 +7,9 @@
|
|||
flex-direction: column;
|
||||
gap: 8px;
|
||||
max-width: min(400px, calc(100vw - 64px));
|
||||
max-height: calc(100dvh - 96px);
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
pointer-events: none;
|
||||
|
||||
[data-slot="toast-list"] {
|
||||
|
|
@ -17,6 +19,8 @@
|
|||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
max-height: 100%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -26,6 +30,8 @@
|
|||
align-items: flex-start;
|
||||
gap: 20px;
|
||||
padding: 16px 20px;
|
||||
max-height: min(420px, calc(100dvh - 96px));
|
||||
overflow: hidden;
|
||||
pointer-events: auto;
|
||||
transition: all 150ms ease-out;
|
||||
|
||||
|
|
@ -91,8 +97,10 @@
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2px;
|
||||
min-height: 0;
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
[data-slot="toast-title"] {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue