Skip to content

Commit 97a67ec

Browse files
authored
🐛 Fix banner (#5127)
1 parent 1ec0feb commit 97a67ec

File tree

1 file changed

+15
-2
lines changed
  • argilla-frontend/pages/dataset/_id/annotation-mode

1 file changed

+15
-2
lines changed

argilla-frontend/pages/dataset/_id/annotation-mode/index.vue

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,12 @@
1212
/>
1313
</template>
1414
<template v-slot:center>
15-
<PersistentStorageBanner />
16-
<RecordFeedbackTaskAndQuestionnaire :recordCriteria="recordCriteria" />
15+
<div class="center">
16+
<PersistentStorageBanner />
17+
<RecordFeedbackTaskAndQuestionnaire
18+
:recordCriteria="recordCriteria"
19+
/>
20+
</div>
1721
</template>
1822
</AnnotationPage>
1923
</div>
@@ -38,3 +42,12 @@ export default {
3842
},
3943
};
4044
</script>
45+
46+
<style scoped>
47+
.center {
48+
height: 100%;
49+
max-height: 100%;
50+
display: flex;
51+
flex-direction: column;
52+
}
53+
</style>

0 commit comments

Comments
 (0)