Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ export const IconBrick = ({ onClick }): JSX.Element => {
background: '#FFFFFF',
boxShadow: '0px 0.6px 1.8px rgba(0, 0, 0, 0.108), 0px 3.2px 7.2px rgba(0, 0, 0, 0.132)',
borderRadius: '2px',
position: 'relative',
cursor: 'pointer',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
}}
onClick={e => {
e.stopPropagation();
Expand All @@ -22,16 +24,16 @@ export const IconBrick = ({ onClick }): JSX.Element => {
>
<div
css={{
position: 'absolute',
left: 4,
top: 4,
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
background: '#FED9CC',
width: 16,
height: 16,
borderRadius: '8px',
}}
>
<Icon iconName="ErrorBadge" style={{ fontSize: 8, position: 'absolute', left: 4, top: 4 }} />
<Icon iconName="ErrorBadge" style={{ fontSize: 8 }} />
</div>
</div>
);
Expand Down