diff --git a/src/components/Tooling/Content/AdditionalInfo/AdditionalInfo.module.css b/src/components/Tooling/Content/AdditionalInfo/AdditionalInfo.module.css index a34b1e976..b2dd66711 100644 --- a/src/components/Tooling/Content/AdditionalInfo/AdditionalInfo.module.css +++ b/src/components/Tooling/Content/AdditionalInfo/AdditionalInfo.module.css @@ -17,7 +17,6 @@ display: none; } .infoBox { - background: #fff; padding: 18px 20px; width: 100%; } @@ -27,7 +26,6 @@ } .title { - color: #101010; font-size: 18px; font-style: normal; font-weight: 600; diff --git a/src/components/Tooling/Content/AdditionalInfo/AdditionalInfo.tsx b/src/components/Tooling/Content/AdditionalInfo/AdditionalInfo.tsx index 05329fe3d..40d515d7c 100644 --- a/src/components/Tooling/Content/AdditionalInfo/AdditionalInfo.tsx +++ b/src/components/Tooling/Content/AdditionalInfo/AdditionalInfo.tsx @@ -37,8 +37,8 @@ const AdditionalInfo = ({ data, selectedTool, onClose }) => { {status === Status.HAS_ADDITIONAL_INFO && ( -
-
{selectedTool.remarkPluginFrontmatter.name}
+
+
{selectedTool.remarkPluginFrontmatter.name}
{data}
)} diff --git a/src/components/Tooling/Content/Category/Category.module.css b/src/components/Tooling/Content/Category/Category.module.css index 4c143e5c9..6060d581c 100644 --- a/src/components/Tooling/Content/Category/Category.module.css +++ b/src/components/Tooling/Content/Category/Category.module.css @@ -18,11 +18,8 @@ margin-bottom: 10px; border-width: 1px; border-style: solid; - background: #ffffff; - @apply border-black dark:border-white; } .toolsCategory .item.active { - @apply text-white bg-black dark:text-black dark:bg-white; } @media screen and (max-width: 50em) { .toolsCategory .item { diff --git a/src/components/Tooling/Content/Category/Category.tsx b/src/components/Tooling/Content/Category/Category.tsx index 97849cd11..4d61e7218 100644 --- a/src/components/Tooling/Content/Category/Category.tsx +++ b/src/components/Tooling/Content/Category/Category.tsx @@ -7,7 +7,12 @@ const Category = ({ categories, value, onChange }) => {