15 lines
323 B
TypeScript
15 lines
323 B
TypeScript
import { style } from "@vanilla-extract/css";
|
|
import { background100, background200 } from "../utils/theme";
|
|
|
|
export const bar = style({
|
|
backgroundColor: background200,
|
|
width: "0.3em",
|
|
height: "1em",
|
|
border: `1px solid ${background100}`,
|
|
// margin: 2
|
|
});
|
|
|
|
export const container = style({
|
|
display: "flex",
|
|
});
|
|
|