|
@@ -23,26 +23,26 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
+@import "~@/styles/variables.scss";
|
|
|
.app-main {
|
|
|
- /* 50= navbar 50 */
|
|
|
- min-height: calc(100vh - 50px);
|
|
|
+ min-height: calc(100vh - #{$headerHeight});
|
|
|
width: 100%;
|
|
|
position: relative;
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
|
|
|
.fixed-header+.app-main {
|
|
|
- padding-top: 50px;
|
|
|
+ padding-top: #{$headerHeight};
|
|
|
}
|
|
|
|
|
|
.hasTagsView {
|
|
|
.app-main {
|
|
|
- /* 84 = navbar + tags-view = 50 + 34 */
|
|
|
- min-height: calc(100vh - 84px);
|
|
|
+ /* 34 = tags-view */
|
|
|
+ min-height: calc(100vh - 34px - #{$headerHeight});
|
|
|
}
|
|
|
|
|
|
.fixed-header+.app-main {
|
|
|
- padding-top: 84px;
|
|
|
+ padding-top: calc(34px + #{$headerHeight});
|
|
|
}
|
|
|
}
|
|
|
</style>
|