Skip to content

Commit

Permalink
Fix dark mode styles
Browse files Browse the repository at this point in the history
  • Loading branch information
tomas-doudera committed Jul 28, 2023
1 parent 2d82fe3 commit edb2e61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/dist/filament-simple-color-picker.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion resources/views/simple-color-picker.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class="bg-white dark:bg-gray-700 absolute p-2 border dark:border-gray-600 rounde
@foreach ( $getColors() as $color )
<div
x-on:click="state = '{{ $color }}'"
class="h-5 w-5 m-1 rounded-full border-2 border-white shadow-gray-300 hover:shadow-gray-400 dark:hover:shadow-none shadow-md cursor-pointer"
class="h-5 w-5 m-1 rounded-full border-2 border-white shadow-gray-300 dark:shadow-none hover:shadow-gray-400 dark:hover:shadow-none shadow-md cursor-pointer"
style="background-color:{{ $color }}">
</div>
@endforeach
Expand Down

0 comments on commit edb2e61

Please sign in to comment.