Skip to content

Commit c6d08b8

Browse files
author
prima
committed
fix: Scaling issues
1 parent fdac154 commit c6d08b8

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

klite.embd

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ Current version indicated by LITEVER below.
192192
/* Viewports */
193193
.normal_viewport_height
194194
{
195-
height: calc(98vh - 240px);
195+
height: calc(98vh - 260px);
196196
}
197197
@media (max-width: 534px) {
198198
.normal_viewport_height
@@ -36934,16 +36934,19 @@ flowchart TD\n${treeToViewOutput.outputText.trim()}`
3693436934
#memorycontainerfg {
3693536935
width: 90%;
3693636936
height: 90%;
36937+
margin-top: 5%;
3693736938
}
3693836939

3693936940
#memory_tab_container, #wi_tab_container, #documentdb_tab_container {
36940-
height: 90%;
36941-
max-height: 90%;
36941+
height: calc(90% - 60px);
36942+
max-height: calc(90% - 60px);
3694236943
overflow-y: auto;
3694336944
}
3694436945

36945-
#wilist:not(.sidepanelsize) {
36946-
max-height: 90% !important
36946+
@media (min-width: 600px) {
36947+
#wilist:not(.sidepanelsize) {
36948+
max-height: calc(90% - 70px)
36949+
}
3694736950
}
3694836951
</style>
3694936952
<script>

0 commit comments

Comments
 (0)