From 2b75970145d5e00139745916e9e265fd8aeb5177 Mon Sep 17 00:00:00 2001 From: Kevin Tun Date: Wed, 29 Jan 2025 11:30:38 -0600 Subject: [PATCH] style(headerStyles.ts): remove unused styles to declutter the codebase The commit removes the unused styles `linksIcon`, `linksButton`, and `linksContainer` from the `headerStyles.ts` file to improve code readability and maintainability by reducing unnecessary clutter. --- packages/header/src/styles/headerStyles.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/packages/header/src/styles/headerStyles.ts b/packages/header/src/styles/headerStyles.ts index a6006272c8..f948bacfdf 100644 --- a/packages/header/src/styles/headerStyles.ts +++ b/packages/header/src/styles/headerStyles.ts @@ -27,17 +27,6 @@ const headerStyles = makeStyles({ flexDirection: "column", justifyContent: "center", }, - linksIcon: { fontSize: "2.2rem" }, - linksButton: { - display: "flex", - flexDirection: "column", - color: "hsl(210, 100%, 25%)", - }, - linksContainer: { - display: "flex", - flexDirection: "row", - gap: 2, - }, }) export { headerStyles }