Skip to content

Commit

Permalink
Merge pull request #4302 from nextcloud/fix/app-content-details-globaly
Browse files Browse the repository at this point in the history
fix: remove app-content-details from global styling
  • Loading branch information
st3iny authored Jan 21, 2025
2 parents e6d5070 + 12707c4 commit 36c9078
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions src/css/contacts.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,22 @@ $grid-input-height-with-margin: $grid-height-unit - $grid-input-margin * 2;
// various
@import 'animations';

.app-content-details {
padding: calc(var(--default-grid-baseline) * 2);
padding-top: 0;
height: 100%;
overflow: auto;
.app-contacts {
.app-content-details {
padding: calc(var(--default-grid-baseline) * 2);
padding-top: 0;
height: 100%;
overflow: auto;

// Compensate top padding reserved for the back button on mobile
@media (max-width: 1024px) {
height: calc(100% - 44px);
padding: 0 20px;
// Compensate top padding reserved for the back button on mobile
@media (max-width: 1024px) {
height: calc(100% - 44px);
padding: 0 20px;
}
}
}

.app-content-list {
// Cancel scrolling
overflow: visible;
.app-content-list {
// Cancel scrolling
overflow: visible;
}
}

0 comments on commit 36c9078

Please sign in to comment.