Skip to content
Snippets Groups Projects
Commit 1f289405 authored by Steinwender, Tamara's avatar Steinwender, Tamara
Browse files

Make file-handling hander scrollable on mobile

parent 9482cd81
No related branches found
No related tags found
No related merge requests found
...@@ -252,11 +252,19 @@ export function getFileHandlingCss() { ...@@ -252,11 +252,19 @@ export function getFileHandlingCss() {
.modal-nav{ .modal-nav{
display: flex; display: flex;
justify-content: space-around; /*justify-content: space-around;*/
grid-area: nav; grid-area: nav;
border: none; border: none;
border-bottom: 1px solid black; border-bottom: 1px solid black;
border-top: 1px solid black; border-top: 1px solid black;
white-space: nowrap;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.modal-nav::-webkit-scrollbar {
display: none;
} }
.modal-content{ .modal-content{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment