From d3cfd1c97407a10189b1bc80514620e1095738ed Mon Sep 17 00:00:00 2001 From: Nate Butler Date: Wed, 6 Apr 2022 12:14:05 -0400 Subject: [PATCH] Use standard text sizes for signInPrompt --- styles/src/styleTree/workspace.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/styles/src/styleTree/workspace.ts b/styles/src/styleTree/workspace.ts index 3a585458c3dd42c999924711d12479b5877f81ca..9e35052abf33f7a638de41bd80d7456db3f1eda3 100644 --- a/styles/src/styleTree/workspace.ts +++ b/styles/src/styleTree/workspace.ts @@ -3,8 +3,7 @@ import { backgroundColor, border, iconColor, text } from "./components"; export default function workspace(theme: Theme) { const signInPrompt = { - ...text(theme, "sans", "secondary"), - size: 13, + ...text(theme, "sans", "secondary", { size: "xs" }), underline: true, padding: { right: 8, @@ -117,8 +116,7 @@ export default function workspace(theme: Theme) { signInPrompt, hoveredSignInPrompt: { ...signInPrompt, - ...text(theme, "sans", "active"), - size: 13, + ...text(theme, "sans", "active", { size: "xs" }), }, offlineIcon: { color: iconColor(theme, "secondary"),