🐛 Fixing lists heights and overflows

This commit is contained in:
Maxime Lalo 2023-08-03 14:54:59 +02:00
parent 0e2a27dbb7
commit 97265c23ce
6 changed files with 15 additions and 5 deletions

View File

@ -15,7 +15,9 @@
}
.folderlist-container {
height: 100%;
max-height: calc(100vh - 290px);
height: calc(100vh - 290px);
overflow: auto;
border-right: 1px solid var(--grey-medium);
}
}
}

View File

@ -16,6 +16,7 @@
.folderlist-container {
max-height: calc(100vh - 290px);
height: calc(100vh - 290px);
overflow: auto;
border-right: 1px solid var(--grey-medium);
}

View File

@ -16,6 +16,7 @@
.folderlist-container {
max-height: calc(100vh - 290px);
height: calc(100vh - 290px);
overflow: auto;
border-right: 1px solid var(--grey-medium);
}

View File

@ -15,7 +15,9 @@
}
.folderlist-container {
height: 100%;
max-height: 100vh;
height: 100vh;
overflow: auto;
border-right: 1px solid var(--grey-medium);
}
}

View File

@ -15,7 +15,9 @@
}
.folderlist-container {
height: 100%;
max-height: 100vh;
height: 100vh;
overflow: auto;
border-right: 1px solid var(--grey-medium);
}
}

View File

@ -15,7 +15,9 @@
}
.folderlist-container {
height: 100%;
max-height: 100vh;
height: 100vh;
overflow: auto;
border-right: 1px solid var(--grey-medium);
}
}