Merge pull request #3370 from nextcloud/enh/3289/sidebar-usability

Make the sidebar usable on mobile again
This commit is contained in:
Christoph Wurst 2021-07-29 08:54:05 +02:00 committed by GitHub
commit 111c3aa8bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 7 deletions

View File

@ -83,22 +83,30 @@
display: flex;
flex-direction: column;
justify-content: space-between;
overflow: unset !important;
max-height: unset !important;
&__buttons {
padding-top: 14px;
position: absolute;
position: fixed;
bottom: 0px;
z-index: 2;
width: 97%;
left: 0px;
width: calc(27vw - 11px);
min-width: 300px - 11px;
max-width: 500px - 11px;
right: 10px;
background-color: var(--color-main-background);
padding-left: 22px;
padding-right: 22px;
button {
width: 100%;
height: 44px;
}
}
&__content {
margin-bottom: 120px;
}
}
.property-title-time-picker-loading-placeholder {

View File

@ -409,8 +409,4 @@ export default {
::v-deep .app-sidebar-header__description {
flex-direction: column;
}
::v-deep .app-sidebar-tab__content {
margin-bottom: 100px;
}
</style>