Skip to content
Snippets Groups Projects
Commit 540a2e93 authored by Thilo Wischmeyer's avatar Thilo Wischmeyer Committed by Thilo Wischmeyer
Browse files

Repaired student layout

parent 5e47c3e7
No related branches found
No related tags found
1 merge request!247Resolve "Update Vuetify"
<template> <template>
<v-container class="flex"> <v-container>
<v-row> <v-row v-if="!feedback">
<v-col <v-col>
cols="6" <v-alert type="info">
offset="3"
>
<v-alert
:value="!feedback"
type="info"
>
This submission hasn't been corrected due to this being a pass only exam. This submission hasn't been corrected due to this being a pass only exam.
</v-alert> </v-alert>
<v-alert </v-col>
:value="feedback && !feedback.isFinal" </v-row>
type="info" <v-row v-if="feedback && !feedback.isFinal">
> <v-col>
<v-alert type="info">
This feedback is not final! Changes will likely occur! This feedback is not final! Changes will likely occur!
</v-alert> </v-alert>
</v-col> </v-col>
<v-col </v-row>
:class="{ md6: !solutionHidden, md12: solutionHidden }" <v-row>
> <v-col :md="solutionHidden ? 12 : 6">
<base-annotated-submission :key="mathRerender"> <base-annotated-submission :key="mathRerender">
<template #header> <template #header>
<annotated-submission-top-toolbar <annotated-submission-top-toolbar
...@@ -64,8 +59,6 @@ ...@@ -64,8 +59,6 @@
<v-row <v-row
v-for="label in mappedLabels" v-for="label in mappedLabels"
:key="'global' + label.pk" :key="'global' + label.pk"
align="center" align="center"
> >
<v-col sm="6"> <v-col sm="6">
...@@ -204,4 +197,7 @@ export default { ...@@ -204,4 +197,7 @@ export default {
height: 800px; height: 800px;
} }
.v-alert {
margin: 0;
}
</style> </style>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment