Skip to content

Commit 42ef5c0

Browse files
Scrolling fixes
1 parent 579b71c commit 42ef5c0

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed

contentcuration/contentcuration/frontend/channelList/views/Channel/CatalogFilterPanelContent.vue

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -203,19 +203,7 @@
203203
.filter-panel-content {
204204
display: flex;
205205
flex-direction: column;
206-
height: calc(100vh - 120px);
207-
}
208-
209-
.mobile-header {
210-
display: flex;
211-
align-items: center;
212-
padding: 16px;
213-
214-
.mobile-title {
215-
margin: 0 0 0 16px;
216-
font-size: 1.25rem;
217-
font-weight: 500;
218-
}
206+
height: calc(100vh - 96px);
219207
}
220208
221209
.filters-container {

contentcuration/contentcuration/frontend/channelList/views/Channel/CatalogFilters.vue

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,14 +100,21 @@
100100
}
101101
102102
.filter-panel-desktop {
103-
top: 64px;
103+
position: fixed;
104+
top: 100px;
104105
left: 0;
105106
width: 335px;
106107
overflow-y: auto;
107108
}
108109
109110
.main-content-area {
110111
flex: 1;
112+
width: 100%;
113+
min-height: 100vh;
114+
115+
&.with-sidebar {
116+
margin-left: 335px;
117+
}
111118
}
112119
@media (max-width: 600px) {
113120
.catalog-filters-wrapper {

0 commit comments

Comments
 (0)