From 4baf1596e8ff6bde1e7365e85bc716d24eb509ab Mon Sep 17 00:00:00 2001 From: samunohito <46447427+samunohito@users.noreply.github.com> Date: Sun, 7 Jul 2024 17:14:40 +0900 Subject: [PATCH] fix last-child css --- packages/frontend/src/components/grid/MkGrid.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/frontend/src/components/grid/MkGrid.vue b/packages/frontend/src/components/grid/MkGrid.vue index 9d8c16b1d1..bda469c83e 100644 --- a/packages/frontend/src/components/grid/MkGrid.vue +++ b/packages/frontend/src/components/grid/MkGrid.vue @@ -34,7 +34,6 @@ SPDX-License-Identifier: AGPL-3.0-only :setting="rowSetting" :bus="bus" :using="row.using" - :class="[ lastLine === row.index ? $style.lastLine : {} ]" @operation:beginEdit="onCellEditBegin" @operation:endEdit="onCellEditEnd" @change:value="onChangeCellValue" @@ -1316,7 +1315,7 @@ $borderRadius: var(--radius); } } - &.lastLine { + &:last-child { .mk_grid_td, .mk_grid_th { // 一番下の行 border-bottom: $borderSetting;