Fix busted css

This commit is contained in:
Bill 2022-03-01 04:39:59 -05:00
parent 22fc19da2b
commit 90031aa447
2 changed files with 5 additions and 2 deletions

View File

@ -6,7 +6,10 @@
&.active {
border-color: $grid-active-border-color !important;
background-color: $grid-active-bg-color;
&:not(.clear-bg) {
background-color: $grid-active-bg-color !important;
}
}
&.disabled {

View File

@ -26,7 +26,7 @@ export const AvatarEditorPaletteSetItem: FC<AvatarEditorPaletteSetItemProps> = p
});
return (
<LayoutGridItem itemHighlight itemColor={ colorItem.color } itemActive={ colorItem.isSelected } { ...rest }>
<LayoutGridItem itemHighlight itemColor={ colorItem.color } itemActive={ colorItem.isSelected } className="clear-bg" { ...rest }>
{ colorItem.isHC && <CurrencyIcon className="position-absolute end-1 bottom-1" type={ 'hc' } /> }
{ children }
</LayoutGridItem>