Skip to content

Commit

Permalink
Merge pull request #998 from aaronreed708/fix-colorpicker-oncolor
Browse files Browse the repository at this point in the history
#946: fix color picker hex value text not con…
  • Loading branch information
aaronreed708 authored Aug 13, 2024
2 parents c0909c7 + 65718db commit 75b8f58
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions code/src/ui/src/components/ColorShade.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<<<<<<< Updated upstream ======= .color-block {
.color-block {
display: inline-block;
font-size: 11px;
width: 96px;
Expand Down Expand Up @@ -29,6 +29,6 @@ li .Hex {
text-align: center !important;
}

>>>>>>>Stashed changes .swatch-details.active {
.swatch-details.active {
display: block;
}
2 changes: 1 addition & 1 deletion code/src/ui/src/pages/atoms/ColorPaletteAtom.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ export const ColorPaletteAtom: React.FC<Props> = ({
sx={{
backgroundColor: `${_blockPickerColor}`,
input: {
color: `${_blockPickerOnColor}`,
color: `${_blockPickerOnColor} !important`,
},
}}
/>
Expand Down

0 comments on commit 75b8f58

Please sign in to comment.