From 2a4e864edf5e4e730b331b3c3bd3f1bb3d931c53 Mon Sep 17 00:00:00 2001 From: Kazuki Yamada Date: Sun, 24 Aug 2025 15:45:28 +0900 Subject: [PATCH] style(website): remove unnecessary border from file list container Remove redundant border and border-radius from file list container as the table already provides appropriate visual separation --- website/client/components/Home/TryItFileSelection.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/website/client/components/Home/TryItFileSelection.vue b/website/client/components/Home/TryItFileSelection.vue index 38730430..0dddc27a 100644 --- a/website/client/components/Home/TryItFileSelection.vue +++ b/website/client/components/Home/TryItFileSelection.vue @@ -251,8 +251,6 @@ const toggleFileSelection = (file: FileInfo, event?: Event) => { .file-list-container { max-height: 300px; overflow-y: auto; - border: 1px solid var(--vp-c-border); - border-radius: 4px; background: var(--vp-c-bg); }