From 02417dda40efe73580d03d5b1dbfa158dccdce62 Mon Sep 17 00:00:00 2001 From: ChristoferMendes Date: Sun, 12 May 2024 20:52:04 -0300 Subject: [PATCH] style: update tag component CSS formatting --- src/renderer/src/components/tag/tag.css.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/renderer/src/components/tag/tag.css.ts b/src/renderer/src/components/tag/tag.css.ts index 6d1076ba..f0c0608f 100644 --- a/src/renderer/src/components/tag/tag.css.ts +++ b/src/renderer/src/components/tag/tag.css.ts @@ -2,11 +2,11 @@ import { SPACING_UNIT, vars } from "../../theme.css"; import { style } from "@vanilla-extract/css"; export const tagStyle = style({ - borderRadius: '3px', + borderRadius: "3px", border: `1px solid ${vars.color.border}`, padding: `${SPACING_UNIT / 4}px ${SPACING_UNIT}px`, }); export const tagText = style({ - fontSize: '11px', -}) + fontSize: "11px", +});