From 3377d03f89f2891d989a1c54790e00a39767aa83 Mon Sep 17 00:00:00 2001 From: Steve Xu Date: Thu, 27 Nov 2025 18:36:24 +0800 Subject: [PATCH 1/3] fix: correct the reference path of the CSS file Signed-off-by: Steve Xu --- client/src/App.scss | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/client/src/App.scss b/client/src/App.scss index 9328f13..391f188 100644 --- a/client/src/App.scss +++ b/client/src/App.scss @@ -1,7 +1,7 @@ -@import "~@blueprintjs/core/lib/css/blueprint.css"; -@import "~@blueprintjs/icons/lib/css/blueprint-icons.css"; -@import "~@blueprintjs/datetime/lib/css/blueprint-datetime.css"; -@import "~@blueprintjs/popover2/lib/css/blueprint-popover2.css"; +@import "@blueprintjs/core/lib/css/blueprint.css"; +@import "@blueprintjs/icons/lib/css/blueprint-icons.css"; +@import "@blueprintjs/datetime2/lib/css/blueprint-datetime2.css"; +@import "@blueprintjs/popover2/lib/css/blueprint-popover2.css"; @import 'slickgrid/slick.grid.css'; @import 'slickgrid/css/smoothness/jquery-ui-1.11.3.custom.min.css'; @import 'slickgrid/controls/slick.pager.css'; @@ -2650,4 +2650,5 @@ border-radius: 50%; div.lat-chart { text-align: right; -} \ No newline at end of file + +} From c874ef4c8f743a4ae50e2ea63eb3f976d4566b4c Mon Sep 17 00:00:00 2001 From: Steve Xu Date: Thu, 27 Nov 2025 18:37:55 +0800 Subject: [PATCH 2/3] fix: correct the reference path of the CSS file Signed-off-by: Steve Xu --- client/src/App.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/client/src/App.scss b/client/src/App.scss index 391f188..73baaf1 100644 --- a/client/src/App.scss +++ b/client/src/App.scss @@ -2650,5 +2650,4 @@ border-radius: 50%; div.lat-chart { text-align: right; - } From 250370a4ac52f3aa57ec3a1fe5f6bf2decf35da8 Mon Sep 17 00:00:00 2001 From: Steve Xu Date: Thu, 27 Nov 2025 18:38:35 +0800 Subject: [PATCH 3/3] fix: correct the reference path of the CSS file Signed-off-by: Steve Xu