Skip to content

Commit

Permalink
fix: version background
Browse files Browse the repository at this point in the history
  • Loading branch information
BigJk committed Oct 4, 2024
1 parent 6326998 commit bc9aaba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/js/ui/components/box.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ export default (): m.Component<BoxProps> => ({
style['height'] = `${attrs.height}px`;
}

return m(`div.ba.b--black-05.br3.dib.pa2.bg-black-05${attrs.className ?? ''}`, { style }, children);
return m(`div.ba.b--black-05.br3.dib.pa2${attrs.className ?? ''}${attrs.className?.includes('.bg-') ? '' : '.bg-black-05'}`, { style }, children);
},
});

0 comments on commit bc9aaba

Please sign in to comment.