Skip to content

Commit c4b888e

Browse files
authored
Merge pull request #26 from finmars-platform/sidenav-addons
fix scrolls
2 parents 4bd64f3 + f2d71dd commit c4b888e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/common/SettingsLayout.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@
4141
}
4242
4343
.fm_container {
44-
min-height: calc(100vh - 80px);
44+
min-height: calc(100vh - 100px);
4545
}
4646
</style>

src/layouts/default.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
132132
.content {
133133
flex-grow: 1;
134-
height: calc(100vh - 80px);
134+
height: calc(100vh - 100px);
135135
overflow: auto;
136136
}
137137
</style>

src/pages/addons/[module].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<div v-if="!errorMessage">
77
<iframe
88
:src="configurationUrl"
9-
style="width: 100%; height: 100vh; border: 0"
9+
style="width: 100%; height: calc(100vh - 100px); border: 0"
1010
/>
1111
</div>
1212
</div>

0 commit comments

Comments
 (0)