Commit 9b0e6ac 1 parent 3107e55 commit 9b0e6ac Copy full SHA for 9b0e6ac
File tree 4 files changed +18
-8
lines changed
4 files changed +18
-8
lines changed Original file line number Diff line number Diff line change @@ -323,14 +323,14 @@ export default {
323
323
<style lang="scss" scoped>
324
324
325
325
.app-content {
326
- position: relative ;
326
+ position: initial ;
327
327
z-index: 1000;
328
328
flex-basis: 100vw;
329
- min-width: 0;
330
- min-height: 100%;
329
+ height: 100%;
331
330
// Overriding server styles TODO: cleanup!
332
331
margin: 0 !important;
333
332
background-color: var(--color-main-background);
333
+ overflow: scroll;
334
334
335
335
// Variables
336
336
// the whitespace between the topbar content and its edges
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ export default {
149
149
padding: 4px;
150
150
// Above appcontent
151
151
z-index: 1800;
152
- height: calc(100vh - #{$header-height}) ;
152
+ height: 100% ;
153
153
box-sizing: border-box;
154
154
-webkit-user-select: none;
155
155
-moz-user-select: none;
@@ -162,6 +162,7 @@ export default {
162
162
background-color: var(--color-main-background-blur, var(--color-main-background));
163
163
-webkit-backdrop-filter: var(--filter-background-blur, none);
164
164
backdrop-filter: var(--filter-background-blur, none);
165
+
165
166
&--close {
166
167
margin-left: - $navigation-width;
167
168
transform: translateX(-100%);
Original file line number Diff line number Diff line change @@ -639,9 +639,10 @@ $top-buttons-spacing: 6px;
639
639
width: 27vw;
640
640
min-width: $sidebar-min-width;
641
641
max-width: $sidebar-max-width;
642
- height: calc(100vh - var(--header-height)) ;
642
+ height: 100% ;
643
643
border-left: 1px solid var(--color-border);
644
644
background: var(--color-main-background);
645
+
645
646
.app-sidebar-header {
646
647
> .app-sidebar__close {
647
648
position: absolute;
Original file line number Diff line number Diff line change @@ -81,10 +81,18 @@ export default {
81
81
<style lang="scss" scoped>
82
82
.content {
83
83
box-sizing: border-box;
84
- position: relative;
84
+ margin: var(--body-container-margin);
85
+ margin-top: 50px;
85
86
display: flex;
86
- padding-top: 50px;
87
- min-height: 100%;
87
+ width: calc(100% - var(--body-container-margin) * 2);
88
+ height: var(--body-height);
89
+ overflow: hidden;
90
+ padding: 0;
91
+
92
+ &:not(.with-sidebar--full) {
93
+ position: fixed;
94
+ }
95
+
88
96
:deep(*) {
89
97
box-sizing: border-box;
90
98
}
You can’t perform that action at this time.
0 commit comments