From 02097962a9348cfb7984fdc7e9e382a95ffa2e4f Mon Sep 17 00:00:00 2001 From: darkhorse7881 Date: Thu, 29 May 2025 00:33:05 -0600 Subject: [PATCH] fixed build errors --- src/pages/StatusPage.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/StatusPage.vue b/src/pages/StatusPage.vue index 2dea7260d..249fa7955 100644 --- a/src/pages/StatusPage.vue +++ b/src/pages/StatusPage.vue @@ -1366,7 +1366,7 @@ footer { border-left: 5px solid; &.bg-info { - border-left-color: $info; + border-left-color: #0dcaf0; /* Hardcoded Bootstrap info color */ } &.bg-warning { @@ -1411,8 +1411,8 @@ footer { } } - /* Ensure markdown content is properly styled */ - :deep(.markdown-content) { + /* Fix the :deep selector issue by using ::v-deep instead */ + ::v-deep .markdown-content { h1, h2, h3, h4, h5, h6 { margin-top: 1rem; margin-bottom: 0.5rem; @@ -1484,7 +1484,7 @@ footer { } } - :deep(.markdown-content) { + ::v-deep .markdown-content { code, pre { background-color: rgba(255, 255, 255, 0.05); }