From 95cacc2ffa79a60f51f1d0017f9dd8a59d6585ce Mon Sep 17 00:00:00 2001 From: "haitao(lj)" Date: Sat, 17 Dec 2022 22:43:23 +0800 Subject: [PATCH 1/2] feat(Header): Set the Header background color to the correct white when light-theme --- ui/src/components/Header/index.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/Header/index.scss b/ui/src/components/Header/index.scss index e8c1c436..9afd32f4 100644 --- a/ui/src/components/Header/index.scss +++ b/ui/src/components/Header/index.scss @@ -53,7 +53,7 @@ // style for colored navbar &.theme-light { - background: linear-gradient(180deg, rgb(var(--bs-light-rgb)) 0%, rgba(var(--bs-light-rgb), 0.95) 100%); + background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.95) 100%); } } From 933edf02692f30753acb685ee3e2b0bb3eb9b89c Mon Sep 17 00:00:00 2001 From: "haitao(lj)" Date: Sat, 17 Dec 2022 23:10:00 +0800 Subject: [PATCH 2/2] fix(Question): remove break-word in .fmt p --- ui/src/index.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/ui/src/index.scss b/ui/src/index.scss index 4cc4c718..b4ceeaaa 100644 --- a/ui/src/index.scss +++ b/ui/src/index.scss @@ -215,7 +215,6 @@ a { max-width: 100%; } p { - word-break: break-word; > code { background-color: #e9ecef; color: #212529;