diff --git a/src/components/Hints.vue b/src/components/Hints.vue index f128c45..94e2914 100644 --- a/src/components/Hints.vue +++ b/src/components/Hints.vue @@ -32,7 +32,11 @@ defineProps({ v-for="(group, index) in hints" :key="index" class="hint-group" - :class="{ 'is-active': index === activeIndex }" + :class="{ + 'is-active': index === activeIndex, + 'guide-right': orientation === 'col' && (index + 1) % 5 === 0 && index !== size - 1, + 'guide-bottom': orientation === 'row' && (index + 1) % 5 === 0 && index !== size - 1 + }" >