From 783a0fc8a10596238383e8ca50dcc2d15a7da3ab Mon Sep 17 00:00:00 2001 From: Katalina Okano Date: Tue, 23 May 2023 19:33:26 -0400 Subject: [PATCH] adjust subpixel alignment on bar --- app/components/faction-bar.css.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/components/faction-bar.css.ts b/app/components/faction-bar.css.ts index 0be8c07..ef2609c 100644 --- a/app/components/faction-bar.css.ts +++ b/app/components/faction-bar.css.ts @@ -8,7 +8,7 @@ export const bar = style({ flexDirection: "row", overflow: "hidden", borderRadius: "0.4rem", - border: "2px solid #2d2d2d", + border: "2px solid #4d4d4d", }); export const tinyBar = style({ @@ -22,6 +22,7 @@ export const tinyBar = style({ const shared: ComplexStyleRule = { textAlign: "center", + boxShadow: "inset 0 0 0.5rem rgb(0 0 0 / 10%)", }; export const left = style({ @@ -31,7 +32,9 @@ export const left = style({ export const center = style({ ...shared, backgroundColor: "#1564cc", - borderBottom: "1px solid #2d2d2d", + borderLeft: "1px solid #4d4d4d", + borderRight: "2px solid #4d4d4d", + boxShadow: "inset 0 0 0.5rem rgb(180 180 180 / 10%)", }); export const right = style({ ...shared,