feat: update font size

This commit is contained in:
Zamitto 2024-07-05 12:38:53 -03:00
parent b7f94102da
commit ab81e21341
2 changed files with 2 additions and 6 deletions

View file

@ -48,9 +48,7 @@ export function AutoUpdateSubHeader() {
<header className={styles.subheader}> <header className={styles.subheader}>
<Link to={releasesPageUrl} className={styles.newVersionLink}> <Link to={releasesPageUrl} className={styles.newVersionLink}>
<SyncIcon className={styles.newVersionIcon} size={12} /> <SyncIcon className={styles.newVersionIcon} size={12} />
<small>
{t("version_available_download", { version: newVersion })} {t("version_available_download", { version: newVersion })}
</small>
</Link> </Link>
</header> </header>
); );
@ -65,9 +63,7 @@ export function AutoUpdateSubHeader() {
onClick={handleClickInstallUpdate} onClick={handleClickInstallUpdate}
> >
<SyncIcon className={styles.newVersionIcon} size={12} /> <SyncIcon className={styles.newVersionIcon} size={12} />
<small>
{t("version_available_install", { version: newVersion })} {t("version_available_install", { version: newVersion })}
</small>
</button> </button>
</header> </header>
); );

View file

@ -157,7 +157,7 @@ export const newVersionButton = style({
justifyContent: "center", justifyContent: "center",
gap: `${SPACING_UNIT}px`, gap: `${SPACING_UNIT}px`,
color: vars.color.body, color: vars.color.body,
fontSize: "13px", fontSize: "12px",
":hover": { ":hover": {
textDecoration: "underline", textDecoration: "underline",
cursor: "pointer", cursor: "pointer",
@ -169,7 +169,7 @@ export const newVersionLink = style({
alignItems: "center", alignItems: "center",
gap: `${SPACING_UNIT}px`, gap: `${SPACING_UNIT}px`,
color: "#8e919b", color: "#8e919b",
fontSize: "13px", fontSize: "12px",
}); });
export const newVersionIcon = style({ export const newVersionIcon = style({