Skip to content

Commit 4b06282

Browse files
authored
DAVE-717 Entfernen Divider in Gesamtauswertung und hinzufügen rechter Border (#482)
* add right border to stepper menu and remove vertical devider * adapt stepper height calc method * reformat code
1 parent bd5ef99 commit 4b06282

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

frontend/src/views/AuswertungView.vue

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
>
88
<v-sheet
99
class="d-flex flex-column overflow-y-auto"
10+
style="
11+
border-right-color: lightgrey;
12+
border-right-style: solid;
13+
border-right-width: 1px;
14+
"
1015
:height="stepperSheetHeight"
1116
width="100%"
1217
>
@@ -37,7 +42,6 @@
3742
</v-card-actions>
3843
</v-sheet>
3944
</v-col>
40-
<v-divider vertical />
4145
<v-col cols="8">
4246
<progress-loader v-model="chartDataLoading" />
4347
<step-line-card
@@ -214,8 +218,7 @@ const appBarHeight = computed(() => {
214218
});
215219
216220
const stepperSheetHeight = computed(() => {
217-
const overflowX = display.width.value / 3 <= minWidth;
218-
return 100 - (overflowX ? 3 : 0) - appBarHeight.value + "vh";
221+
return 100 - appBarHeight.value + "vh";
219222
});
220223
221224
const stepperSheetActionsHeight = computed(() => {

0 commit comments

Comments
 (0)