Skip to content

Commit 3b6dffc

Browse files
committed
fix: menu text colors
1 parent 48cda08 commit 3b6dffc

File tree

11 files changed

+149
-105
lines changed

11 files changed

+149
-105
lines changed

apps/main/next.config.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ const nextConfig = {
2727
],
2828
experimental: {
2929
scrollRestoration: true,
30-
useDeploymentId: true,
3130
swcPlugins: [
3231
// Allow Date/Map in getStaticProps
3332
['next-superjson-plugin', {}],

apps/main/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"html-loader": "4.2.0",
3535
"lodash": "4.17.21",
3636
"micro": "10.0.1",
37-
"next": "14.1.1",
37+
"next": "14.1.4",
3838
"next-axiom": "0.17.0",
3939
"next-connect": "0.12.2",
4040
"next-mdx-remote": "3.0.8",
@@ -61,7 +61,7 @@
6161
"@chirpy-dev/eslint-config": "workspace:*",
6262
"@chirpy-dev/service-worker": "workspace:*",
6363
"@chirpy-dev/tsconfigs": "workspace:*",
64-
"@next/bundle-analyzer": "14.1.0",
64+
"@next/bundle-analyzer": "14.1.4",
6565
"@relative-ci/agent": "4.1.6",
6666
"@types/cors": "2.8.16",
6767
"@types/jest": "29.5.8",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"eslint": "8.47.0",
2222
"husky": "8.0.3",
2323
"lint-staged": "13.2.3",
24-
"next": "14.1.1",
24+
"next": "14.1.4",
2525
"prettier": "2.8.8",
2626
"react": "18.2.0",
2727
"react-dom": "18.2.0",

packages/analytics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@tremor/react": "3.6.1",
1919
"clsx": "2.0.0",
2020
"framer-motion": "10.16.5",
21-
"next": "14.1.1",
21+
"next": "14.1.4",
2222
"prop-types": "15.8.1",
2323
"react": "18.2.0",
2424
"react-dom": "18.2.0"

packages/eslint-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"eslint-plugin-prettier": "4.2.1",
1414
"eslint-plugin-storybook": "0.6.7",
1515
"eslint-plugin-unicorn": "48.0.1",
16-
"next": "14.1.1",
16+
"next": "14.1.4",
1717
"prettier": "2.8.8",
1818
"react": "18.2.0",
1919
"react-dom": "18.2.0",

packages/trpc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"@types/web-push": "3.6.3",
2727
"dayjs": "1.11.10",
2828
"nanoid": "5.0.7",
29-
"next": "14.1.1",
29+
"next": "14.1.4",
3030
"next-auth": "4.24.5",
3131
"next-axiom": "0.17.0",
3232
"react": "18.2.0",

packages/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@types/react": "18.2.37",
1515
"@types/react-dom": "18.2.15",
1616
"csstype": "3.1.2",
17-
"next": "14.1.1",
17+
"next": "14.1.4",
1818
"next-auth": "4.24.5",
1919
"next-mdx-remote": "3.0.8",
2020
"react": "18.2.0",

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"framer-motion": "10.16.5",
4646
"lucide-react": "0.265.0",
4747
"md5": "2.3.0",
48-
"next": "14.1.1",
48+
"next": "14.1.4",
4949
"next-auth": "4.24.5",
5050
"next-axiom": "0.17.0",
5151
"next-mdx-remote": "3.0.8",

packages/ui/src/components/menu/menu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,4 +145,4 @@ function MenuItem({
145145

146146
export const MenuItemPadding = `px-4 py-3`;
147147

148-
const itemStyle = `font-medium transition flex flex-row items-center border-none text-gray-1200 cursor-pointer w-full text-sm text-right gap-2`;
148+
const itemStyle = `font-medium transition flex flex-row items-center border-none text-gray-1100 cursor-pointer w-full text-sm text-right gap-2`;

packages/ui/src/styles/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const bluredBg = `
1010

1111
export const border = `border outline-none focus-visible:border-primary-900`;
1212

13-
export const listHoverableColor = `transition hover:bg-primary-400 hover:text-primary-1100`;
13+
export const listHoverableColor = `transition hover:bg-primary-400 hover:text-primary-1100 dark:hover:text-white`;
1414
export const listHoverable = `px-2 py-1 rounded ${listHoverableColor}`;
1515

1616
export const ring = `focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-bg focus-visible:ring-offset-2 focus-visible:ring-primary-700`;

0 commit comments

Comments
 (0)