Fixing absolute/relative layouts of Svelte layers

This commit is contained in:
David Négrier 2021-06-02 09:58:00 +02:00
parent 96cd097af8
commit 9e35f96ce5
4 changed files with 97 additions and 58 deletions

View file

@ -1212,13 +1212,15 @@ div.action.danger p.action-body{
height: 100%;
pointer-events: none;
.absolute-overlay {
position: absolute;
& > div {
position: relative;
width: 100%;
height: 100%;
& > * {
position: relative;
& > div {
position: absolute;
width: 100%;
height: 100%;
}
}
}