Skip to content

Commit 49854f3

Browse files
committed
fix: Update styling syntax for conditional item states
1 parent 8eb75bf commit 49854f3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/modules/Builder/features/ActivityItems/LeftBar/Item/Item.styles.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ export const StyledItem = styled(StyledFlexTopCenter, shouldForwardProp)`
3737
stroke: ${variables.palette.on_surface_variant};
3838
}
3939
40-
${isActive && `background-color: ${variables.palette.secondary_container};`}
41-
${hasError && `background-color: ${variables.palette.error_container};`}
40+
${isActive && `background-color: ${variables.palette.secondary_container}`};
41+
${hasError && `background-color: ${variables.palette.error_container}`};
4242
${
4343
isDragging &&
4444
`background-color: ${blendColorsNormal(

0 commit comments

Comments
 (0)