From 5f08fd0f5e4dff19b15fdd1ad639cfe7b7bb5dc3 Mon Sep 17 00:00:00 2001 From: Zamitto <167933696+zamitto@users.noreply.github.com> Date: Sun, 2 Jun 2024 02:14:43 -0300 Subject: [PATCH] remove !important --- src/renderer/src/components/header/auto-update-sub-header.tsx | 3 +-- src/renderer/src/components/header/header.css.ts | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/renderer/src/components/header/auto-update-sub-header.tsx b/src/renderer/src/components/header/auto-update-sub-header.tsx index 55e060c9..f56cb823 100644 --- a/src/renderer/src/components/header/auto-update-sub-header.tsx +++ b/src/renderer/src/components/header/auto-update-sub-header.tsx @@ -1,10 +1,9 @@ import { useTranslation } from "react-i18next"; import { useEffect, useState } from "react"; import { SyncIcon } from "@primer/octicons-react"; - +import { Link } from "../link/link"; import * as styles from "./header.css"; import { AppUpdaterEvents } from "@types"; -import { Link } from "../link/link"; export const releasesPageUrl = "https://github.com/hydralauncher/hydra/releases"; diff --git a/src/renderer/src/components/header/header.css.ts b/src/renderer/src/components/header/header.css.ts index a76e77f6..65445991 100644 --- a/src/renderer/src/components/header/header.css.ts +++ b/src/renderer/src/components/header/header.css.ts @@ -168,6 +168,6 @@ export const newVersionLink = style({ display: "flex", alignItems: "center", gap: `${SPACING_UNIT}px`, - color: "#8e919b !important", + color: "#8e919b", fontSize: "13px", });