File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,15 @@ import PropTypes from "prop-types";
55const baseURL = "https://github.com/webpack/webpack.js.org/edit/main/" ;
66
77function Separator ( ) {
8- return < span className = "mx-5 text-black font-bold dark:text-white" > ·</ span > ;
8+ return (
9+ < span className = "mx-5 text-gray-500 font-semibold dark:text-gray-300" >
10+ ·
11+ </ span >
12+ ) ;
913}
1014
1115const classes =
12- "text-gray-500 dark:text-gray-500 text-sm cursor-pointer font-sans hover:underline" ;
16+ "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 " ;
1317
1418function _handlePrintClick ( event ) {
1519 event . preventDefault ( ) ;
@@ -21,7 +25,7 @@ export default function PageLinks({ page = {} }) {
2125 const editLink = page . edit || Url . resolve ( baseURL , page . path ) ;
2226
2327 return (
24- < div className = "print:hidden mt-20 " >
28+ < div className = "print:hidden mt-8 " >
2529 < a className = { classes } href = { editLink } >
2630 Edit this page
2731 </ a >
You can’t perform that action at this time.
0 commit comments