From b250ff947ed2046015011030c0382317c34e130c Mon Sep 17 00:00:00 2001 From: "brian.mulier" Date: Tue, 1 Oct 2024 11:20:21 +0200 Subject: [PATCH] fix(ui): links' color were wrong in the doc when in a div --- ui/src/components/docs/Docs.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/src/components/docs/Docs.vue b/ui/src/components/docs/Docs.vue index dbe1c45f52..0fe9bae594 100644 --- a/ui/src/components/docs/Docs.vue +++ b/ui/src/components/docs/Docs.vue @@ -102,7 +102,7 @@ #{--bs-link-color-rgb}: to-rgb(#BBBBFF); } - :deep(> h2) { + :deep(h2) { font-weight: 600; border-top: 1px solid var(--bs-border-color); margin-bottom: 2rem; @@ -116,7 +116,7 @@ } } - :deep(> h3) { + :deep(h3) { padding-top: 1.25rem; } @@ -171,7 +171,7 @@ justify-content: space-around; } - :deep(.card-group > a), :deep(> h2 > a), :deep(> h3 > a) { + :deep(.card-group > a), :deep(h2 > a), :deep(h3 > a) { color: var(--bs-body-color); }