Skip to content

Commit

Permalink
fix(theme): background color input border color
Browse files Browse the repository at this point in the history
  • Loading branch information
devrsi0n committed Jan 9, 2024
1 parent 0f272f8 commit 348c7ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ui/src/blocks/theme-editor/color-picker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export function ColorPicker({
</Text>
</div>
<input
className={`hover:cursor-pointer [&::-moz-color-swatch-wrapper]:p-0 [&::-moz-color-swatch]:rounded-full [&::-webkit-color-swatch-wrapper]:p-0 [&::-webkit-color-swatch]:rounded-full ${pickerButtonStyle}`}
className={`hover:cursor-pointer [&::-moz-color-swatch-wrapper]:p-0 [&::-moz-color-swatch]:rounded-full [&::-moz-color-swatch]:border-gray-600 [&::-webkit-color-swatch-wrapper]:p-0 [&::-webkit-color-swatch]:rounded-full [&::-webkit-color-swatch]:border-gray-600 ${pickerButtonStyle}`}
type="color"
name="colorPicker"
value={value}
Expand All @@ -101,4 +101,4 @@ export function ColorPicker({
}

const pickerButtonStyle =
'inline-block h-6 w-6 rounded-full border border-gray-1000 hover:ring-gray-400 hover:ring-4';
'inline-block h-6 w-6 rounded-full hover:ring-gray-400 hover:ring-4';

0 comments on commit 348c7ee

Please sign in to comment.