From bd310d8305fec60ac9c6dcb3c5924799d5534a32 Mon Sep 17 00:00:00 2001 From: Grzegorz Kucmierz Date: Thu, 12 Feb 2026 14:27:51 +0100 Subject: [PATCH] ui: linie pomocnicze co 5 w opisach wierszy i kolumn --- src/components/Hints.vue | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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 + }" >