Skip to content

Commit

Permalink
fix footer hover
Browse files Browse the repository at this point in the history
  • Loading branch information
freglyc committed Oct 5, 2023
1 parent 8a8c103 commit 989c16b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ Check the top-level render call using <` + L + ">.");
}
process.env.NODE_ENV === "production" ? er.exports = ka() : er.exports = wa();
var P = er.exports;
const yt = ({ href: e, title: n, className: t }) => /* @__PURE__ */ P.jsx("a", { className: `${t} text-zinc-300 hover:text-amber-500 transition ease-in-out`, href: e, target: "_blank", rel: "noreferrer", children: n });
const yt = ({ href: e, title: n, className: t }) => /* @__PURE__ */ P.jsx("a", { className: `${t} text-zinc-300 hover:text-zinc-100 transition ease-in-out`, href: e, target: "_blank", rel: "noreferrer", children: n });
function wr() {
return /* @__PURE__ */ P.jsxs("div", { className: "flex flex-col items-center w-full font-light text-sm", children: [
/* @__PURE__ */ P.jsxs("div", { className: "flex", children: [
Expand Down
2 changes: 1 addition & 1 deletion dist/index.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/style.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@quibbble/boardgame",
"private": false,
"version": "1.1.4",
"version": "1.1.5",
"description": "React component library for Quibbble boardgames.",
"main": "dist/index.umd.js",
"module": "dist/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";

const Link = ({ href, title, className }) => (
<a className={`${ className } text-zinc-300 hover:text-amber-500 transition ease-in-out`} href={ href } target="_blank" rel="noreferrer">
<a className={`${ className } text-zinc-300 hover:text-zinc-100 transition ease-in-out`} href={ href } target="_blank" rel="noreferrer">
{ title }
</a>
)
Expand Down

0 comments on commit 989c16b

Please sign in to comment.