bugfix: console scrolling and min height

Signed-off-by: Stefan Dej <meteyou@gmail.com>
This commit is contained in:
Stefan Dej 2021-08-12 22:48:32 +02:00
parent 3b13444859
commit dc379e544a

View File

@ -1,7 +1,8 @@
<style scoped> <style scoped>
.consoleScrollContainer { .consoleScrollContainer {
max-height: calc(100vh - 180px); min-height: 200px;
height: calc(100vh - 180px);
} }
</style> </style>
@ -9,7 +10,7 @@
<template> <template>
<div class="d-flex flex-column"> <div class="d-flex flex-column">
<v-row :class="this.consoleDirection === 'table' ? 'order-0' : 'order-1 mt-3'"> <v-row :class="this.consoleDirection === 'table' ? 'order-0' : 'order-1 mt-3'">
<v-col class="col"> <v-col>
<v-textarea <v-textarea
v-model="gcode" v-model="gcode"
:items="items" :items="items"
@ -53,10 +54,10 @@
</v-col> </v-col>
</v-row> </v-row>
<v-row :class="this.consoleDirection === 'table' ? 'order-1' : 'order-0 mt-0'"> <v-row :class="this.consoleDirection === 'table' ? 'order-1' : 'order-0 mt-0'">
<v-col xs12> <v-col :class="this.consoleDirection === 'table' ? 'col' : 'col pt-0'">
<v-card> <v-card>
<v-card-text class="pa-0"> <v-card-text class="pa-0">
<perfect-scrollbar ref="consoleScroll" class="consoleScrollContainer d-flex flex-column justify-end"> <perfect-scrollbar ref="consoleScroll" class="consoleScrollContainer d-flex flex-column">
<console-table ref="console" <console-table ref="console"
:is-mini="false" :is-mini="false"
:events="events" :events="events"