fix: views viewport height

This commit is contained in:
2024-08-29 15:57:40 +02:00
parent 9155fd9f8d
commit d9865be83e
4 changed files with 6 additions and 7 deletions
+2 -2
View File
@@ -407,9 +407,9 @@ export default defineComponent({
$rowCol: #424242; $rowCol: #424242;
.station_table { .station_table {
height: calc(100vh - 10em); height: calc(100vh - 11em);
max-height: 2000px; max-height: 2000px;
min-height: 700px; min-height: 500px;
overflow: auto; overflow: auto;
font-weight: 500; font-weight: 500;
} }
+2 -2
View File
@@ -82,8 +82,8 @@ export default defineComponent({
@import '../../styles/animations.scss'; @import '../../styles/animations.scss';
.train-table { .train-table {
height: calc(100vh - 8em); height: calc(100vh - 11em);
min-height: 550px; min-height: 500px;
position: relative; position: relative;
overflow-y: auto; overflow-y: auto;
+2 -2
View File
@@ -11,8 +11,8 @@
.list_wrapper { .list_wrapper {
overflow-y: auto; overflow-y: auto;
height: calc(100vh - 10em); height: calc(100vh - 12.5em);
min-height: 650px; min-height: 500px;
margin-top: 0.5em; margin-top: 0.5em;
position: relative; position: relative;
-1
View File
@@ -117,7 +117,6 @@ export default defineComponent({
@import '../styles/responsive.scss'; @import '../styles/responsive.scss';
.trains-view { .trains-view {
min-height: 600px;
position: relative; position: relative;
} }