Skip to content

Commit

Permalink
Fix background bleed through on color bubbles
Browse files Browse the repository at this point in the history
  • Loading branch information
josh-signal committed Oct 1, 2021
1 parent f07deca commit e033fd2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion stylesheets/components/ChatColorPicker.scss
Expand Up @@ -30,7 +30,6 @@

&__bubble {
align-items: center;
background-color: $color-gray-05;
display: flex;
justify-content: center;
@include color-bubble($bubble-size);
Expand Down Expand Up @@ -60,6 +59,10 @@
);
}
}

&--custom {
background-color: $color-gray-05;
}
}

&__add-icon {
Expand Down
2 changes: 1 addition & 1 deletion ts/components/ChatColorPicker.tsx
Expand Up @@ -223,7 +223,7 @@ export const ChatColorPicker = ({
})}
<div
aria-label={i18n('ChatColorPicker__custom-color--label')}
className="ChatColorPicker__bubble"
className="ChatColorPicker__bubble ChatColorPicker__bubble--custom"
onClick={() =>
setCustomColorToEdit({ id: undefined, value: undefined })
}
Expand Down

0 comments on commit e033fd2

Please sign in to comment.