|
@@ -12,7 +12,10 @@
|
|
<template v-for="(groupNumber, index) in groups" :key="index">
|
|
<template v-for="(groupNumber, index) in groups" :key="index">
|
|
<div class="tw-mb-4">
|
|
<div class="tw-mb-4">
|
|
<div
|
|
<div
|
|
- class="tw-flex tw-justify-between tw-place-items-center hover:tw-bg-gray-200"
|
|
|
|
|
|
+ class="
|
|
|
|
+ tw-flex tw-justify-between tw-place-items-center
|
|
|
|
+ hover:tw-bg-gray-200
|
|
|
|
+ "
|
|
style="border-bottom: 1px solid grey"
|
|
style="border-bottom: 1px solid grey"
|
|
@mouseover="addFocusTrack(groupNumber, undefined, undefined)"
|
|
@mouseover="addFocusTrack(groupNumber, undefined, undefined)"
|
|
@mouseleave="removeFocusTrack"
|
|
@mouseleave="removeFocusTrack"
|
|
@@ -30,7 +33,11 @@
|
|
<template v-for="(question, index) in questions" :key="index">
|
|
<template v-for="(question, index) in questions" :key="index">
|
|
<div
|
|
<div
|
|
v-if="question.groupNumber === groupNumber"
|
|
v-if="question.groupNumber === groupNumber"
|
|
- class="question tw-flex tw-place-items-center tw-mb-1 tw-ml-2 hover:tw-bg-gray-200"
|
|
|
|
|
|
+ class="
|
|
|
|
+ question
|
|
|
|
+ tw-flex tw-place-items-center tw-mb-1 tw-ml-2
|
|
|
|
+ hover:tw-bg-gray-200
|
|
|
|
+ "
|
|
@mouseover="
|
|
@mouseover="
|
|
addFocusTrack(
|
|
addFocusTrack(
|
|
undefined,
|
|
undefined,
|
|
@@ -238,7 +245,7 @@ export default defineComponent({
|
|
padding-left: 6px;
|
|
padding-left: 6px;
|
|
padding-right: 6px;
|
|
padding-right: 6px;
|
|
max-height: calc(100vh - 41px);
|
|
max-height: calc(100vh - 41px);
|
|
- overflow: scroll;
|
|
|
|
|
|
+ overflow: auto;
|
|
}
|
|
}
|
|
.question {
|
|
.question {
|
|
min-width: 100px;
|
|
min-width: 100px;
|