diff --git a/src/components/PageLinks/PageLinks.jsx b/src/components/PageLinks/PageLinks.jsx index 47875c0fc830..6e012bac8c96 100644 --- a/src/components/PageLinks/PageLinks.jsx +++ b/src/components/PageLinks/PageLinks.jsx @@ -5,11 +5,15 @@ import PropTypes from "prop-types"; const baseURL = "https://github.com/webpack/webpack.js.org/edit/main/"; function Separator() { - return ·; + return ( + + · + + ); } const classes = - "text-gray-500 dark:text-gray-500 text-sm cursor-pointer font-sans hover:underline"; + "text-gray-500 dark:text-gray-200 text-sm cursor-pointer font-sans hover:underline hover:text-gray-500 dark:hover:text-white transition-colors"; function _handlePrintClick(event) { event.preventDefault(); @@ -21,7 +25,7 @@ export default function PageLinks({ page = {} }) { const editLink = page.edit || Url.resolve(baseURL, page.path); return ( -