initial index

This commit is contained in:
41666 2023-05-22 21:04:29 -04:00
parent 62cc828d6a
commit 88015a98cd
21 changed files with 343 additions and 56 deletions

View file

@ -0,0 +1,30 @@
import type { ComplexStyleRule } from "@vanilla-extract/css";
import { style } from "@vanilla-extract/css";
export const bar = style({
display: "flex",
alignItems: "center",
justifyContent: "center",
flexDirection: "row",
overflow: "hidden",
borderRadius: "0.4rem",
border: "2px solid #2d2d2d",
});
const shared: ComplexStyleRule = {
textAlign: "center",
};
export const left = style({
...shared,
backgroundColor: "#991cba",
});
export const center = style({
...shared,
backgroundColor: "#1564cc",
borderBottom: "1px solid #2d2d2d",
});
export const right = style({
...shared,
backgroundColor: "#d30101",
});