From 97aeccec2c3691712a28b37fdc8124908e067917 Mon Sep 17 00:00:00 2001 From: rebustron Date: Thu, 21 Nov 2024 20:36:57 +0100 Subject: [PATCH 1/3] typo --search-font-weight root.css --- apps/base-docs/src/css/root.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/base-docs/src/css/root.css b/apps/base-docs/src/css/root.css index bcfcff7a46..19cac91451 100644 --- a/apps/base-docs/src/css/root.css +++ b/apps/base-docs/src/css/root.css @@ -223,7 +223,7 @@ html { --ifm-color-primary-lightest: rgb(146, 224, 208); --ifm-code-font-size: 95%; --search-font-size: 16px; - --search-font-weight: 16px; + --search-font-weight: 400; /* Base Docs Palette */ --base-docs-color-fg: #000000; From 9fc78ed87c5446d36dca7ea400edd46b16e24628 Mon Sep 17 00:00:00 2001 From: rebustron Date: Thu, 21 Nov 2024 20:43:51 +0100 Subject: [PATCH 2/3] Merge duplicate .feature rules custom.css --- apps/base-docs/src/css/custom.css | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/apps/base-docs/src/css/custom.css b/apps/base-docs/src/css/custom.css index d42f7dae9a..824cac4d33 100644 --- a/apps/base-docs/src/css/custom.css +++ b/apps/base-docs/src/css/custom.css @@ -33,6 +33,7 @@ html[data-theme='dark'] .docusaurus-highlight-code-line { .feature { border: 1px solid var(--ifm-color-emphasis-300); border-radius: var(--ifm-pagination-nav-border-radius); + background-color: var(--ifm-background-surface-color); } .feature-title { @@ -51,10 +52,6 @@ html[data-theme='dark'] .docusaurus-highlight-code-line { line-height: 52px; } -.feature { - background-color: var(--ifm-background-surface-color); -} - /* overriding white text as the alert high a light background */ [data-theme='dark'] .alert-message { color: #000; From 0e8b335b38b61f3fc02dd3ed143fa02280e9cb06 Mon Sep 17 00:00:00 2001 From: rebustron Date: Thu, 21 Nov 2024 21:10:28 +0100 Subject: [PATCH 3/3] typo 'display' property does not accept 'auto' global.css --- apps/bridge/pages/global.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/bridge/pages/global.css b/apps/bridge/pages/global.css index 732bc78475..7fdef6a00b 100644 --- a/apps/bridge/pages/global.css +++ b/apps/bridge/pages/global.css @@ -43,7 +43,7 @@ } .scrollbar::-webkit-scrollbar { - display: auto; + /*display: auto; - is invalid because the 'display' property does not accept 'auto' as a value. */ } /* https://stackoverflow.com/questions/71296535/how-to-remove-arrow-on-input-type-number-with-tailwind-css */