From 2acdd7309b32425b35beda582af73650addd3cde Mon Sep 17 00:00:00 2001 From: 666ghj <670939375@qq.com> Date: Wed, 31 Dec 2025 17:58:17 +0800 Subject: [PATCH] style(HistoryDatabase): update grid background size and opacity for improved aesthetics --- frontend/src/components/HistoryDatabase.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/HistoryDatabase.vue b/frontend/src/components/HistoryDatabase.vue index d462839..d71f068 100644 --- a/frontend/src/components/HistoryDatabase.vue +++ b/frontend/src/components/HistoryDatabase.vue @@ -355,11 +355,11 @@ onMounted(() => { left: 0; right: 0; bottom: 0; - /* 60px x 60px 的正方形网格 */ + /* 40px x 40px 的正方形网格 */ background-image: - linear-gradient(to right, rgba(0, 0, 0, 0.06) 1px, transparent 1px), - linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 1px, transparent 1px); - background-size: 60px 60px; + linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px), + linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px); + background-size: 50px 50px; background-position: center center; }