Skip to content

Commit

Permalink
fix popup theme
Browse files Browse the repository at this point in the history
  • Loading branch information
cohenerickson committed Aug 29, 2023
1 parent 75f2955 commit 2007ac0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@
"solid-start": "^0.2.0"
},
"engines": {
"node": "18.x"
"node": ">=18.x"
}
}
2 changes: 1 addition & 1 deletion src/components/Popup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function Popups(): JSX.Element {
{(popup: Popup): JSX.Element => (
<Show when={popup.linkedTab === getActiveTab()}>
<div class={`flex h-full w-full items-center justify-center`}>
<div class="top-50 left-50 relative min-w-[408px] flex-none rounded-lg bg-[#42414d] px-3 py-4 text-[#fbfbfe]">
<div class="popup relative min-w-[408px] flex-none rounded-md border px-3 py-4">
<div class="mb-2 select-none font-semibold">
<i class="fa-light fa-globe mr-2"></i>
<span>
Expand Down
2 changes: 1 addition & 1 deletion src/util/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function preferences(): Preferences {
"general.tabs.openWindowLinksInTab": true,
"general.tabs.switchToMedia": false,
"general.tabs.confirmBeforeClosing": true,
"search.defaults.useHttps": false,
"search.defaults.useHttps": true,
"search.defaults.searchEngine": "google",
"search.defaults.proxy": "ultraviolet",
"bookmarks.shown": true
Expand Down

0 comments on commit 2007ac0

Please sign in to comment.