fix: update tag styles to match variables

This commit is contained in:
ChristoferMendes 2024-05-12 20:50:51 -03:00
parent 2f0cd24fb8
commit 0aa36c5a57
2 changed files with 4 additions and 2 deletions

View File

@ -8,3 +8,4 @@ export * from "./sidebar/sidebar";
export * from "./text-field/text-field";
export * from "./checkbox-field/checkbox-field";
export * from "./link/link";
export * from "./tag/tag";

View File

@ -1,9 +1,10 @@
import { SPACING_UNIT, vars } from "../../theme.css";
import { style } from "@vanilla-extract/css";
export const tagStyle = style({
borderRadius: '3px',
border: '1px solid #FFFFFF33',
padding: '2px 5px',
border: `1px solid ${vars.color.border}`,
padding: `${SPACING_UNIT / 4}px ${SPACING_UNIT}px`,
});
export const tagText = style({