From 8d1a34bbb9b2708dff4952844373fab45461b7da Mon Sep 17 00:00:00 2001 From: Joel Date: Tue, 8 Apr 2025 14:33:55 +0800 Subject: [PATCH] fix: Sass @import warning (#17604) --- web/app/styles/markdown.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/app/styles/markdown.scss b/web/app/styles/markdown.scss index 12ddeb162..f1f2a7d67 100644 --- a/web/app/styles/markdown.scss +++ b/web/app/styles/markdown.scss @@ -1,7 +1,7 @@ -@import '../../themes/light'; -@import '../../themes/dark'; -@import '../../themes/markdown-light'; -@import '../../themes/markdown-dark'; +@use '../../themes/light'; +@use '../../themes/dark'; +@use '../../themes/markdown-light'; +@use '../../themes/markdown-dark'; .markdown-body { -ms-text-size-adjust: 100%;