Skip to content

Commit

Permalink
light mode fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
milomg committed Jan 18, 2025
1 parent 73d5bac commit 197f7bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/components/TabBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@
</DropdownMenuTrigger>

<DropdownMenuPortal>
<DropdownMenuContent class="bg-white dark:bg-neutral-800 gap-2">
<DropdownMenuContent class="bg-neutral-200 dark:bg-neutral-800 gap-2 shadow-md ml-2">
<DropdownMenuItem
@click="showSettings = true"
class="dark:hover:bg-neutral-700 hover:bg-neutral-200 py-2 px-3"
class="dark:hover:bg-neutral-700 hover:bg-neutral-300 py-2 px-3"
>
<DropdownMenuLabel>Settings</DropdownMenuLabel>
</DropdownMenuItem>

<DropdownMenuItem
@click="showExportRegionsDialog = true"
class="dark:hover:bg-neutral-700 hover:bg-neutral-200 py-2 px-3"
class="dark:hover:bg-neutral-700 hover:bg-neutral-300 py-2 px-3"
>
<DropdownMenuLabel>Export</DropdownMenuLabel>
</DropdownMenuItem>
Expand Down
4 changes: 2 additions & 2 deletions src/utils/lezer-mips/codemirror.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
border-left-width: 2px;
}
.cm-gutters {
@apply bg-neutral-900;
@apply dark:bg-neutral-900 bg-neutral-200;
}
.cm-completionDetail {
margin-left: auto;
Expand All @@ -20,7 +20,7 @@
.cm-tooltip-autocomplete {
border-radius: 0.5rem;
border: 1px solid #333;
@apply bg-neutral-900;
@apply dark:bg-neutral-900;
}
.cm-tooltip.cm-tooltip-autocomplete > ul {
padding: 0.5rem;
Expand Down

0 comments on commit 197f7bf

Please sign in to comment.