Fixup some theme inconsistencies and incorrect layer selections

This commit is contained in:
K Simmons
2022-10-19 13:39:46 -07:00
parent caec9c1f45
commit b7c439f4c4
4 changed files with 14 additions and 14 deletions
+5 -5
View File
@@ -21,13 +21,13 @@ export default function workspace(colorScheme: ColorScheme) {
left: 8,
right: 8,
},
...text(layer, "sans", { size: "xs" }),
background: background(layer),
...text(layer, "sans", "variant", { size: "xs" }),
background: background(layer, "variant"),
border: border(layer),
hover: {
...text(layer, "sans", "hovered", { size: "xs" }),
background: background(layer, "hovered"),
border: border(layer, "hovered"),
...text(layer, "sans", "variant", "hovered", { size: "xs" }),
background: background(layer, "variant", "hovered"),
border: border(layer, "variant", "hovered"),
},
};
const avatarWidth = 18;