Skip to content

Commit

Permalink
Merge pull request #81 from xenothanhojem/Issue-#72
Browse files Browse the repository at this point in the history
Add Dark Theme support
  • Loading branch information
bastihilger authored May 19, 2024
2 parents b99c386 + 21b8cda commit 71124d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/js/components/FormField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div
class="
w-full overflow-break
bg-gray-100 rounded
bg-gray-100 dark:bg-gray-700 rounded
"
style="z-index: 10; position: sticky; top: 0; left: 0"
>
Expand Down
4 changes: 2 additions & 2 deletions resources/js/components/buttons/BaseButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"
style="margin: 4px; min-width: 32px; height: 32px"
:class="{
'bg-primary-500 hover:bg-primary-400 text-white': isActive,
'bg-white hover:bg-gray-200 text-black': !isActive,
'bg-primary-500 hover:bg-primary-400 text-white hover:dark:bg-gray-900 dark:bg-gray-800 dark:text-white': isActive,
'bg-white hover:bg-gray-200 text-black hover:dark:bg-gray-900 dark:bg-gray-800 dark:text-white': !isActive,
'opacity-50 pointer-events-none': isDisabled,
}"
@mouseover="hovered = true"
Expand Down

0 comments on commit 71124d8

Please sign in to comment.