`, and `` tags.
diff --git a/docs/html/tables/html-tables.mdx b/docs/html/tables/html-tables.mdx
index 70dc214..8c923e2 100644
--- a/docs/html/tables/html-tables.mdx
+++ b/docs/html/tables/html-tables.mdx
@@ -6,7 +6,6 @@ sidebar_position: 1
tags: [html, tables, web development, markup language, structure, data presentation, web design, web pages, websites, table attributes, table structure]
description: "This guide will introduce you to HTML tables, their importance, and how to use them to organize data on web pages. You'll learn about creating tables, structuring rows and columns, and customizing tables with HTML attributes."
keywords: [html tables, html table structure, html table tags, html table attributes, web development, web design, html tutorial]
-hide_table_of_contents: true
---
Tables in HTML are used to organize and present data in a structured format on web pages. HTML tables consist of rows and columns that allow you to display information in a grid-like layout. Tables are commonly used for displaying tabular data, creating calendars, pricing tables, and more.
diff --git a/docs/html/tables/table-attributes.mdx b/docs/html/tables/table-attributes.mdx
index f6a1c0f..aa55018 100644
--- a/docs/html/tables/table-attributes.mdx
+++ b/docs/html/tables/table-attributes.mdx
@@ -13,7 +13,6 @@ keywords:
web development,
html tutorial,
]
-hide_table_of_contents: true
---
Tables in HTML can be customized and styled using various attributes that define the appearance, behavior, and structure of the table. By using these attributes, you can control the alignment, borders, spacing, and other properties of the table to create visually appealing and well-organized tables on your web pages.
diff --git a/docs/html/tables/table-structure.mdx b/docs/html/tables/table-structure.mdx
index c4e7d11..9adf958 100644
--- a/docs/html/tables/table-structure.mdx
+++ b/docs/html/tables/table-structure.mdx
@@ -6,7 +6,6 @@ sidebar_position: 3
tags: [html, web-development, tables, table-structure]
description: "In this tutorial, you will learn about the structure of tables in HTML. Tables are used to display data in rows and columns, making it easier to organize and present information on web pages."
keywords: [html tables, html table structure, html table elements, web development, html tutorial]
-hide_table_of_contents: true
---
Tables in HTML are used to display data in rows and columns, making it easier to organize and present information on web pages. Tables consist of multiple elements that define the structure and appearance of the table, including rows, columns, headers, and cells. Understanding the structure of tables is essential for creating well-formatted and accessible tables in HTML.
diff --git a/docs/html/text-formatting/headings.mdx b/docs/html/text-formatting/headings.mdx
index 5333bda..151ba36 100644
--- a/docs/html/text-formatting/headings.mdx
+++ b/docs/html/text-formatting/headings.mdx
@@ -6,7 +6,6 @@ sidebar_position: 1
tags: [html, web-development, headings]
description: "In this tutorial, you will learn about headings in HTML. Headings are used to define the structure of a web page and are used to provide a hierarchy of information."
keywords: [html headings, h1 to h6, heading tags, semantic headings, html structure]
-hide_table_of_contents: true
---
Headings are an essential part of structuring a web page. In HTML, headings are defined using the `` to `` tags, where `` represents the main heading or title of the page, and `` to `` represent subheadings of decreasing importance.
diff --git a/docs/html/text-formatting/paragraphs.mdx b/docs/html/text-formatting/paragraphs.mdx
index 189dd32..db47a2f 100644
--- a/docs/html/text-formatting/paragraphs.mdx
+++ b/docs/html/text-formatting/paragraphs.mdx
@@ -6,7 +6,6 @@ sidebar_position: 2
tags: [html, paragraphs, html paragraphs, html tutorial, paragraph tag]
description: Learn how to use the HTML paragraph tag to structure and format text content on a web page with proper syntax and examples.
keywords: [html paragraph, p tag, html text formatting, web development, html content structure]
-hide_table_of_contents: true
---
Paragraphs are fundamental building blocks in HTML. They are used to define blocks of text content, making it easier to read and structure text on a webpage. The `` tag is used to create paragraphs in HTML.
diff --git a/docs/html/text-formatting/text-formatting.mdx b/docs/html/text-formatting/text-formatting.mdx
index 00925d3..f975ad9 100644
--- a/docs/html/text-formatting/text-formatting.mdx
+++ b/docs/html/text-formatting/text-formatting.mdx
@@ -6,7 +6,6 @@ sidebar_position: 3
tags: [html, text formatting, html formatting, html tutorial]
description: Learn how to use HTML tags to format text for emphasis, styling, and semantic structure, with examples and best practices.
keywords: [html text formatting, html formatting tags, html text styles, web development, html tutorial]
-hide_table_of_contents: false
---
Text formatting in HTML allows you to emphasize, style, and structure text content on a webpage. HTML provides a variety of tags for bolding, italicizing, underlining, and more. Proper text formatting enhances readability, accessibility, and user engagement.
diff --git a/src/components/Svg/index.tsx b/src/components/Svg/index.tsx
deleted file mode 100644
index 85a9237..0000000
--- a/src/components/Svg/index.tsx
+++ /dev/null
@@ -1,43 +0,0 @@
-/**
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- */
-
-import React, {type ReactNode, type ComponentProps} from 'react';
-import clsx from 'clsx';
-import styles from './styles.module.css';
-
-export type SvgIconProps = ComponentProps<'svg'> & {
- viewBox?: string;
- size?: 'inherit' | 'small' | 'medium' | 'large';
- color?: 'inherit' | 'primary' | 'secondary' | 'success' | 'error' | 'warning';
- svgClass?: string; // Class attribute on the child
- colorAttr?: string; // Applies a color attribute to the SVG element.
- children: ReactNode; // Node passed into the SVG element.
-};
-
-export default function Svg(props: SvgIconProps): JSX.Element {
- const {
- svgClass,
- colorAttr,
- children,
- color = 'inherit',
- size = 'medium',
- viewBox = '0 0 24 24',
- ...rest
- } = props;
-
- return (
-
- );
-}
\ No newline at end of file
diff --git a/src/components/Svg/styles.module.css b/src/components/Svg/styles.module.css
deleted file mode 100644
index 0b72b2f..0000000
--- a/src/components/Svg/styles.module.css
+++ /dev/null
@@ -1,54 +0,0 @@
-/**
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- */
-
- .svgIcon {
- user-select: none;
- width: 1em;
- height: 1em;
- display: inline-block;
- fill: currentColor;
- flex-shrink: 0;
- color: inherit;
-}
-
-/* font-size */
-.small {
- font-size: 1.25rem;
-}
-
-.medium {
- font-size: 1.5rem;
-}
-
-.large {
- font-size: 2.185rem;
-}
-
-/* colors */
-.primary {
- color: var(--ifm-color-primary);
-}
-
-.secondary {
- color: var(--ifm-color-secondary);
-}
-
-.success {
- color: var(--ifm-color-success);
-}
-
-.error {
- color: var(--ifm-color-error);
-}
-
-.warning {
- color: var(--ifm-color-warning);
-}
-
-.inherit {
- color: inherit;
-}
\ No newline at end of file
diff --git a/src/components/svgIcons/FavoriteIcon/index.tsx b/src/components/svgIcons/FavoriteIcon/index.tsx
deleted file mode 100644
index 8c6e4e1..0000000
--- a/src/components/svgIcons/FavoriteIcon/index.tsx
+++ /dev/null
@@ -1,19 +0,0 @@
-/**
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- */
-
-import React from 'react';
-import Svg, {type SvgIconProps} from '../../Svg';
-
-export default function FavoriteIcon(
- props: Omit,
-): JSX.Element {
- return (
-
- );
-}
\ No newline at end of file
diff --git a/src/css/custom.css b/src/css/custom.css
index 192591a..6c8ed6c 100644
--- a/src/css/custom.css
+++ b/src/css/custom.css
@@ -241,13 +241,9 @@ mark {
border-radius: 50%;
}
-/* .row .col .card {
- margin-top: 10px;
-} */
-
-[data-theme='dark'] #__docusaurus_skipToContent_fallback {
+/* [data-theme='dark'] #__docusaurus_skipToContent_fallback {
background: linear-gradient(rgba(15, 23, 42, 0.796), rgba(15, 23, 42, 0.23));
-}
+} */
[data-theme='dark'] .navbar {
background: rgba(15, 23, 42, 0.862);
border-bottom: 1px solid #4e8da0db;
diff --git a/src/css/markdown.module.css b/src/css/markdown.module.css
deleted file mode 100644
index 0f93ee1..0000000
--- a/src/css/markdown.module.css
+++ /dev/null
@@ -1,38 +0,0 @@
-.colorRed strong {
- color: #af6431;
-}
-
-[data-theme='dark'] .colorRed strong {
- color: #af6431;
-}
-
-[data-theme='dark'] .colorRed em {
- color: #e6a377;
-}
-
-.maxwidth {
- width: auto;
- max-width: 600px;
- float: left;
- margin: 0 10px;
-}
-
-.wrap {
- display: inline-block;
-}
-
-.colorRed dt::after {
- content: ':';
-}
-
-.colorRed dl > dt {
- float: left;
- margin-inline-end: 0.26em;
- color: #af6431;
- font-weight: bold;
-}
-
-.colorRed dl > dd {
- margin: 0;
- color: #e6a377;
-}
diff --git a/src/theme/DocItem/DocContent.js b/src/theme/DocItem/DocContent.js
deleted file mode 100644
index cc2d8d4..0000000
--- a/src/theme/DocItem/DocContent.js
+++ /dev/null
@@ -1,110 +0,0 @@
-import React from "react";
-import Head from "@docusaurus/Head";
-import MDXComponents from "../MDXComponents";
-import { MDXProvider } from "@mdx-js/react";
-import {
- useDoc,
- useDocsVersion,
-} from "@docusaurus/plugin-content-docs/client";
-import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
-import useBaseUrl from "@docusaurus/useBaseUrl";
-import DocPaginator from "@theme/DocPaginator";
-import TOC from "@theme/TOC";
-import clsx from "clsx";
-import styles from "./styles.module.css";
-import DocsInfo from "./DocsInfo";
-import DocsRating from "./DocsRating";
-
-export const DocContent = ({ Content, contentRef, readingTimeInWords }) => {
- const { siteConfig } = useDocusaurusContext();
- const {
- metadata,
- frontMatter: {
- image: metaImage,
- keywords,
- hide_title: hideTitle,
- hide_table_of_contents: hideTableOfContents,
- },
- toc,
- } = useDoc();
-
- const { url: siteUrl } = siteConfig;
- const {
- description,
- title,
- permalink,
- editUrl,
- lastUpdatedAt,
- lastUpdatedBy,
- unversionedId,
- } = metadata;
-
- const metaImageUrl = useBaseUrl(metaImage, {
- absolute: true,
- });
-
- return (
- <>
-
- {description && }
- {description && (
-
- )}
- {keywords && keywords.length && (
-
- )}
- {metaImage && }
- {metaImage && }
- {metaImage && (
-
- )}
- {permalink && }
- {permalink && }
-
-
-
-
-
-
- {!hideTitle && (
-
- )}
- {(editUrl || lastUpdatedAt || lastUpdatedBy) && (
-
- )}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {!hideTableOfContents && toc && (
-
-
-
- )}
-
- >
- );
-};
\ No newline at end of file
diff --git a/src/theme/DocItem/DocsInfo.js b/src/theme/DocItem/DocsInfo.js
deleted file mode 100644
index 028aa56..0000000
--- a/src/theme/DocItem/DocsInfo.js
+++ /dev/null
@@ -1,89 +0,0 @@
-import React from "react";
-import { useLocation } from "react-router-dom";
-import {
- FiEdit3,
- FiPrinter,
- FiAlertCircle,
- FiClock,
- FiUser,
-} from "react-icons/fi";
-import styles from "./styles.module.css";
-import ShareButton from "./ShareButton";
-
-function DocsInfo({ docsPluginId, ...props }) {
- const location = useLocation();
- const openDocIssueURL =
- "https://github.com/codeharborhub/codeharborhub.github.io/issues/new?assignees=&labels=&template=---doc-error-report.md&title=Issue with codeharborhub.github.io" +
- `${location.pathname}`;
-
- return (
-
-
- {/* Left Section – Meta Info */}
- {(props.lastUpdatedAt || props.lastUpdatedBy) && (
-
- {props.lastUpdatedAt && (
-
-
-
-
- )}
- {props.readingTimeInWords && (
-
- ⏱ {props.readingTimeInWords}
-
- )}
- {props.lastUpdatedBy && (
-
-
- {props.lastUpdatedBy}
-
- )}
-
- )}
-
- {/* Right Section – Actions */}
-
- {props.editUrl && (
-
-
- Edit
-
- )}
-
-
-
- {openDocIssueURL && (
-
-
- Report
-
- )}
-
-
-
-
-
- );
-}
-
-export default DocsInfo;
\ No newline at end of file
diff --git a/src/theme/DocItem/DocsRating.js b/src/theme/DocItem/DocsRating.js
deleted file mode 100644
index 09a3a60..0000000
--- a/src/theme/DocItem/DocsRating.js
+++ /dev/null
@@ -1,82 +0,0 @@
-import React, { useState } from "react";
-import { useLocation } from "react-router-dom";
-import ExecutionEnvironment from "@docusaurus/ExecutionEnvironment";
-// import { useColorMode } from "@docusaurus/theme-common";
-import { FiThumbsUp, FiThumbsDown } from "react-icons/fi";
-import styles from "./styles.module.css";
-
-const DocsRating = ({ label }) => {
- if (!ExecutionEnvironment.canUseDOM) return null;
-
- const location = useLocation();
- // const { colorMode } = useColorMode();
- const DiscordInviteURL = "https://discord.gg/8p9Z6jkVru";
- const openDocIssueURL =
- `https://github.com/codeharborhub/tutorial/issues/new?assignees=&labels=&template=---doc-error-report.md&title=Issue with codeharborhub.github.io${location.pathname}`;
- const docEnhancementURL =
- `https://github.com/codeharborhub/tutorial/issues/new?assignees=&labels=&template=---doc-site-enhancement-request.md&title=Doc enhancement request for codeharborhub.github.io${location.pathname}`;
-
- const [haveVoted, setHaveVoted] = useState(false);
- const [liked, setLiked] = useState(false);
-
- const giveFeedback = (value) => {
- if (window.ga) {
- window.ga("send", {
- hitType: "event",
- eventCategory: "button",
- eventAction: "feedback",
- eventLabel: label,
- eventValue: value,
- });
- }
- setLiked(value === 1);
- setHaveVoted(true);
- };
-
- return (
-
- {haveVoted ? (
- liked ? (
- 🎉 Thanks for letting us know!
- ) : (
-
- )
- ) : (
-
- Was this topic helpful?
-
-
-
-
-
- )}
-
- );
-};
-
-export default DocsRating;
diff --git a/src/theme/DocItem/Layout.js b/src/theme/DocItem/Layout.js
deleted file mode 100644
index ad2db10..0000000
--- a/src/theme/DocItem/Layout.js
+++ /dev/null
@@ -1,59 +0,0 @@
-import React from 'react';
-import clsx from 'clsx';
-import {useWindowSize} from '@docusaurus/theme-common';
-import {useDoc} from '@docusaurus/plugin-content-docs/client';
-import DocItemPaginator from '@theme/DocItem/Paginator';
-import DocVersionBanner from '@theme/DocVersionBanner';
-import DocVersionBadge from '@theme/DocVersionBadge';
-import DocItemFooter from '@theme/DocItem/Footer';
-import DocItemTOCMobile from '@theme/DocItem/TOC/Mobile';
-import DocItemTOCDesktop from '@theme/DocItem/TOC/Desktop';
-import DocItemContent from '@theme/DocItem/Content';
-import DocBreadcrumbs from '@theme/DocBreadcrumbs';
-import Unlisted from '@theme/Unlisted';
-import styles from './styles.module.css';
-
-/**
- * Decide if the toc should be rendered, on mobile or desktop viewports
- */
-function useDocTOC() {
- const {frontMatter, toc} = useDoc();
- const windowSize = useWindowSize({ desktopBreakpoint: 1150 });
- const hidden = frontMatter.hide_table_of_contents;
- const canRender = !hidden && toc.length > 0;
- const mobile = canRender ? : undefined;
- const desktop =
- canRender && (windowSize === 'desktop' || windowSize === 'ssr') ? (
-
- ) : undefined;
- return {
- hidden,
- mobile,
- desktop,
- };
-}
-export default function DocItemLayout({children}) {
- const docTOC = useDocTOC();
- const {
- metadata: {unlisted},
- } = useDoc();
- return (
-
-
- {unlisted && }
-
-
-
-
-
- {docTOC.mobile}
- {children}
-
-
-
-
-
- {docTOC.desktop && {docTOC.desktop} }
-
- );
-}
\ No newline at end of file
diff --git a/src/theme/DocItem/ShareButton.js b/src/theme/DocItem/ShareButton.js
deleted file mode 100644
index d5882a1..0000000
--- a/src/theme/DocItem/ShareButton.js
+++ /dev/null
@@ -1,75 +0,0 @@
-import React from "react";
-import { useLocation } from "react-router-dom";
-import { useColorMode } from "@docusaurus/theme-common";
-import {
- FiShare2,
- FiTwitter,
- FiLinkedin,
- FiFacebook,
- FiMail,
-} from "react-icons/fi";
-import styles from "./shareButton.module.css";
-
-function ShareButton({ title }) {
- const location = useLocation();
- const { colorMode } = useColorMode();
- const baseUrl = "https://codeharborhub.github.io";
- const fullUrl = baseUrl + location.pathname;
-
- const shareLinks = [
- {
- name: "Twitter",
- url: `https://twitter.com/share?url=${fullUrl}&text=Check out this article on ${title}&hashtags=codeharborhub,opensource`,
- icon: ,
- color: "#1DA1F2",
- },
- {
- name: "LinkedIn",
- url: `https://www.linkedin.com/shareArticle?mini=true&url=${fullUrl}&source=CodeHarborHub`,
- icon: ,
- color: "#0A66C2",
- },
- {
- name: "Facebook",
- url: `https://www.facebook.com/sharer/sharer.php?u=${fullUrl}`,
- icon: ,
- color: "#1877F2",
- },
- {
- name: "Email",
- url: `mailto:?subject=Shared Article | ${title} | CodeHarborHub Docs&body=Check out this article on ${title}: ${fullUrl}`,
- icon: ,
- color: "#D44638",
- },
- ];
-
- return (
-
- );
-}
-
-export default ShareButton;
\ No newline at end of file
diff --git a/src/theme/DocItem/index.js b/src/theme/DocItem/index.js
deleted file mode 100644
index d7ea7e4..0000000
--- a/src/theme/DocItem/index.js
+++ /dev/null
@@ -1,24 +0,0 @@
-import React, { useEffect, useRef, useState } from "react";
-import readingTime from "reading-time/lib/reading-time";
-import { DocProvider } from "@docusaurus/plugin-content-docs/client";
-
-import { DocContent } from "./DocContent";
-
-function DocItem(props) {
- const contentRef = useRef();
- const [readingTimeInWords, setReadingTimeInWords] = useState("");
-
- useEffect(() => {
- if (contentRef.current) {
- const readTime = readingTime(contentRef.current.innerText);
- setReadingTimeInWords(readTime.text);
- }
- }, [contentRef]);
- return (
-
-
-
- );
-}
-
-export default DocItem;
\ No newline at end of file
diff --git a/src/theme/DocItem/shareButton.module.css b/src/theme/DocItem/shareButton.module.css
deleted file mode 100644
index 013b5cf..0000000
--- a/src/theme/DocItem/shareButton.module.css
+++ /dev/null
@@ -1,67 +0,0 @@
-.dropdown {
- position: relative;
- display: inline-block;
-}
-
-.trigger {
- display: flex;
- align-items: center;
- gap: 0.4rem;
- padding: 0.4rem 0.7rem;
- border: 1px solid var(--ifm-color-emphasis-200);
- border-radius: 6px;
- background: var(--ifm-background-surface-color);
- cursor: pointer;
- color: var(--ifm-font-color-base);
- transition: background 0.2s;
- font-size: 0.9rem;
-}
-
-.trigger:hover {
- background: var(--ifm-color-emphasis-100);
-}
-
-.shareIcon {
- font-size: 1rem;
-}
-
-.menu {
- display: none;
- position: absolute;
- top: 100%;
- right: 0;
- margin-top: 0.4rem;
- padding: 0.4rem 0;
- background: var(--ifm-background-surface-color);
- border: 1px solid var(--ifm-color-emphasis-200);
- border-radius: 6px;
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
- min-width: 160px;
- z-index: 20;
- list-style: none;
-}
-
-.dropdown:hover .menu {
- display: block;
-}
-
-.menuItem {
- display: flex;
- align-items: center;
- gap: 0.6rem;
- padding: 0.6rem 0.8rem;
- color: var(--ifm-font-color-base);
- text-decoration: none;
- transition: background 0.2s, color 0.2s;
- font-size: 0.9rem;
-}
-
-.menuItem:hover {
- background: var(--ifm-color-emphasis-100);
- color: var(--hover-color);
- text-decoration: none;
-}
-
-.icon {
- font-size: 1rem;
-}
diff --git a/src/theme/DocItem/styles.module.css b/src/theme/DocItem/styles.module.css
deleted file mode 100644
index cfff5b4..0000000
--- a/src/theme/DocItem/styles.module.css
+++ /dev/null
@@ -1,129 +0,0 @@
-.docTitle {
- font-size: 3rem;
- margin-bottom: -calc(var(--ifm-leading-desktop) * var(--ifm-leading));
-}
-
-.docsInfoWrapper {
- width: 100%;
- display: flex;
- justify-content: center;
-}
-
-.docsInfoContainer {
- width: 100%;
- padding: 1rem 0.2rem;
- display: flex;
- justify-content: space-between;
- align-items: center;
- flex-wrap: wrap;
- border-radius: 8px;
-}
-
-.metaInfo {
- display: flex;
- flex-wrap: wrap;
- gap: 0.75rem;
- color: var(--ifm-color-content-secondary);
- font-size: 0.9rem;
-}
-
-.metaItem {
- display: flex;
- align-items: center;
- gap: 0.4rem;
-}
-
-.actions {
- display: flex;
- align-items: center;
- gap: 0.8rem;
- margin-top: 0.6rem;
-}
-
-.actionBtn {
- display: inline-flex;
- align-items: center;
- gap: 0.35rem;
- padding: 0.4rem 0.75rem;
- border: 1px solid var(--ifm-color-emphasis-200);
- border-radius: 6px;
- background: var(--ifm-background-surface-color);
- font-size: 0.85rem;
- color: var(--ifm-font-color-base);
- text-decoration: none;
- cursor: pointer;
- transition: all 0.2s ease;
-}
-
-.actionBtn:hover {
- background: var(--ifm-color-primary);
- color: #fff;
- border-color: var(--ifm-color-primary);
-}
-
-.icon {
- font-size: 1rem;
- vertical-align: middle;
-}
-
-.docsRating {
- text-align: center;
- font-family: var(--ifm-font-family-base);
-}
-
-.heading {
- font-size: 1.2rem;
- margin-bottom: 1rem;
-}
-
-.buttonGroup {
- display: flex;
- justify-content: center;
- gap: 1rem;
- flex-wrap: wrap;
-}
-
-.voteBtn {
- display: flex;
- align-items: center;
- gap: 0.5rem;
- background: var(--ifm-background-surface-color);
- border: 1px solid var(--ifm-color-emphasis-200);
- color: var(--ifm-font-color-base);
- padding: 0.6rem 1.2rem;
- border-radius: 6px;
- cursor: pointer;
- transition: background 0.2s, color 0.2s, border 0.2s;
- font-size: 0.95rem;
-}
-
-.voteBtn:hover {
- background: var(--ifm-color-emphasis-100);
- border-color: var(--ifm-color-primary);
- color: var(--ifm-color-primary);
-}
-
-.icon {
- font-size: 1.1rem;
-}
-
-.thankYou {
- font-size: 1.1rem;
- color: var(--ifm-color-success);
- font-weight: 500;
-}
-
-.feedbackLinks {
- text-align: left;
- margin-top: 0.5rem;
- line-height: 1.6;
-}
-
-.feedbackLinks a {
- color: var(--ifm-color-primary);
- text-decoration: none;
-}
-
-.feedbackLinks a:hover {
- text-decoration: underline;
-}
|