File uploads

This commit is contained in:
Magnus Åhall 2023-06-22 16:48:31 +02:00
parent 8a3970645f
commit 86cedf9531
6 changed files with 139 additions and 15 deletions

View file

@ -204,7 +204,7 @@ header .menu {
#file-section {
justify-self: center;
width: 900px;
margin-top: 32px;
margin-top: 16px;
padding: 32px;
background: #f5f5f5;
}
@ -224,6 +224,10 @@ header .menu {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
cursor: pointer;
}
#file-section .files .filename:hover {
text-decoration: underline;
}
#file-section .files .size {
white-space: nowrap;
@ -232,13 +236,17 @@ header .menu {
.tree {
padding: 16px;
}
@media only screen and (max-width: 100ex) {
@media only screen and (max-width: 932px) {
.node-content {
width: 100%;
width: calc(100% - 32px);
margin-left: 16px;
padding: 16px;
justify-self: start;
}
#file-section {
width: 100%;
width: calc(100% - 32px);
padding: 16px;
margin-left: 16px;
justify-self: start;
}
}