Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/app/src/app/pages/identities.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@ export default function IdentitiesView(props: IdentitiesViewProps) {
{(code) => (
<div class="rounded-xl border border-sky-7/25 bg-sky-1/40 px-3.5 py-3 space-y-2">
<div class="text-[12px] font-semibold text-sky-11">Private pairing code</div>
<div class="rounded-md border border-sky-7/20 bg-white/80 px-3 py-2 font-mono text-[13px] tracking-[0.08em] text-sky-12">
<div class="rounded-md border border-sky-7/20 bg-sky-2/80 px-3 py-2 font-mono text-[13px] tracking-[0.08em] text-sky-12">
{code()}
</div>
<div class="text-[11px] text-sky-11/90 leading-relaxed">
Expand Down
4 changes: 2 additions & 2 deletions packages/app/src/app/pages/scheduled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ export default function ScheduledTasksView(props: ScheduledTasksViewProps) {

<Show when={deleteTarget()}>
<div class="fixed inset-0 z-50 bg-black/20 backdrop-blur-sm flex items-center justify-center p-4">
<div class="bg-white border border-gray-6 w-full max-w-md rounded-2xl shadow-2xl overflow-hidden">
<div class="bg-gray-1 border border-gray-6 w-full max-w-md rounded-2xl shadow-2xl overflow-hidden">
<div class="p-6 space-y-4">
<div class="flex items-start justify-between gap-4">
<div>
Expand All @@ -824,7 +824,7 @@ export default function ScheduledTasksView(props: ScheduledTasksViewProps) {

<Show when={createModalOpen()}>
<div class="fixed inset-0 z-50 flex items-center justify-center bg-black/20 backdrop-blur-[2px] p-4">
<div class="w-full max-w-2xl rounded-3xl bg-white shadow-2xl overflow-hidden border border-gray-6">
<div class="w-full max-w-2xl rounded-3xl bg-gray-1 shadow-2xl overflow-hidden border border-gray-6">
<div class="p-8 space-y-6">
<div class="flex items-start justify-between gap-4">
<div>
Expand Down