mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-25 19:29:49 +00:00
Use standard text sizes for signInPrompt
This commit is contained in:
parent
c289cdcac8
commit
d3cfd1c974
1 changed files with 2 additions and 4 deletions
|
@ -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"),
|
||||
|
|
Loading…
Reference in a new issue