From 819daad3837e1aa45607c1b9753b865d47ffe5a2 Mon Sep 17 00:00:00 2001 From: riccardoperra Date: Mon, 11 Nov 2024 22:02:58 +0100 Subject: [PATCH] add some important rules --- .../components/Home/ScratchList/ScratchList.css.ts | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/packages/app/src/components/Home/ScratchList/ScratchList.css.ts b/packages/app/src/components/Home/ScratchList/ScratchList.css.ts index 107f936..7737c78 100644 --- a/packages/app/src/components/Home/ScratchList/ScratchList.css.ts +++ b/packages/app/src/components/Home/ScratchList/ScratchList.css.ts @@ -12,14 +12,15 @@ export const scratchList = style({ export const scratchListItem = style({ display: 'flex', flexDirection: 'row', - gap: appTheme.spacing['3'], + gap: `${appTheme.spacing['3']} !important`, alignItems: 'center', - height: '48px', - paddingLeft: appTheme.spacing['4'], - paddingRight: appTheme.spacing['2'], + // TODO: fix style ordering!!!! + height: '48px !important', + paddingLeft: ` ${appTheme.spacing['4']} !important`, + paddingRight: `${appTheme.spacing['2']} !important`, textDecoration: 'unset', - background: themeVars.accent3, - color: themeVars.accent10, + background: `${themeVars.accent3} !important`, + color: `${themeVars.accent10} !important`, position: 'relative', });