|
@@ -39,17 +39,40 @@ export default {
|
|
|
height: 100%;
|
|
|
position: relative;
|
|
|
overflow: scroll;
|
|
|
+ padding: 0 0 0 0;
|
|
|
+ box-sizing: border-box;
|
|
|
@include scrollBar();
|
|
|
}
|
|
|
|
|
|
.fixed-header + .app-main {
|
|
|
+
|
|
|
+ // min-height: calc(100vh - 50px);
|
|
|
+ min-height: 100%;
|
|
|
+ //calc(100vh - 50px);
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ position: relative;
|
|
|
+ overflow: scroll;
|
|
|
+ padding: 0 0 0 0;
|
|
|
padding-top: 50px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ @include scrollBar();
|
|
|
}
|
|
|
|
|
|
.hasTagsView {
|
|
|
.app-main {
|
|
|
/* 84 = navbar + tags-view = 50 + 34 */
|
|
|
- min-height: calc(100vh - 80px);
|
|
|
+ min-height: 100%;
|
|
|
+ min-height: 100%;
|
|
|
+ //calc(100vh - 50px);
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ position: relative;
|
|
|
+ overflow: scroll;
|
|
|
+ padding: 0 0 0 0;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding-top: 50px;
|
|
|
+ @include scrollBar();
|
|
|
}
|
|
|
|
|
|
// .fixed-header+.app-main {
|