mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-14 20:22:10 +00:00
feat: update font size
This commit is contained in:
parent
b7f94102da
commit
ab81e21341
2 changed files with 2 additions and 6 deletions
|
@ -48,9 +48,7 @@ export function AutoUpdateSubHeader() {
|
|||
<header className={styles.subheader}>
|
||||
<Link to={releasesPageUrl} className={styles.newVersionLink}>
|
||||
<SyncIcon className={styles.newVersionIcon} size={12} />
|
||||
<small>
|
||||
{t("version_available_download", { version: newVersion })}
|
||||
</small>
|
||||
</Link>
|
||||
</header>
|
||||
);
|
||||
|
@ -65,9 +63,7 @@ export function AutoUpdateSubHeader() {
|
|||
onClick={handleClickInstallUpdate}
|
||||
>
|
||||
<SyncIcon className={styles.newVersionIcon} size={12} />
|
||||
<small>
|
||||
{t("version_available_install", { version: newVersion })}
|
||||
</small>
|
||||
</button>
|
||||
</header>
|
||||
);
|
||||
|
|
|
@ -157,7 +157,7 @@ export const newVersionButton = style({
|
|||
justifyContent: "center",
|
||||
gap: `${SPACING_UNIT}px`,
|
||||
color: vars.color.body,
|
||||
fontSize: "13px",
|
||||
fontSize: "12px",
|
||||
":hover": {
|
||||
textDecoration: "underline",
|
||||
cursor: "pointer",
|
||||
|
@ -169,7 +169,7 @@ export const newVersionLink = style({
|
|||
alignItems: "center",
|
||||
gap: `${SPACING_UNIT}px`,
|
||||
color: "#8e919b",
|
||||
fontSize: "13px",
|
||||
fontSize: "12px",
|
||||
});
|
||||
|
||||
export const newVersionIcon = style({
|
||||
|
|
Loading…
Reference in a new issue