Skip to content

Commit

Permalink
Update dash bubble colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Lermatroid committed Jul 22, 2024
1 parent 3886b58 commit 3167ca9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/components/dash/overview/ClientBubbles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function Countdown({ title, date }: CountdownProps) {
expiryTimestamp: date,
});
return (
<div className="min-h-[150px] rounded-xl border border-muted p-5">
<div className="min-h-[150px] rounded-xl border border-border p-5">
<div className="flex justify-between">
<div className="flex flex-col items-center">
<h2
Expand Down
4 changes: 2 additions & 2 deletions apps/web/src/components/dash/overview/ServerBubbles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import QRCode from "react-qr-code";

export function Questions() {
return (
<div className="flex h-full min-h-[150px] w-full flex-col justify-between rounded-xl border border-muted p-5">
<div className="flex h-full min-h-[150px] w-full flex-col justify-between rounded-xl border border-border p-5">
<div>
<h1 className="font-bold">Have a question?</h1>
<p className="text-xs text-muted-foreground">
Expand Down Expand Up @@ -53,7 +53,7 @@ export function QuickQR({ qrPayload }: { qrPayload: string }) {
return (
<Link
href={"/dash/pass"}
className="row-span-2 flex flex-col items-center justify-center gap-y-2 rounded-xl border border-muted"
className="row-span-2 flex flex-col items-center justify-center gap-y-2 rounded-xl border border-border"
>
<p className="font-bold">Quick QR</p>
<div className="flex aspect-square h-[50%] items-center justify-center overflow-x-hidden rounded-xl border-2 border-dashed border-muted p-2">
Expand Down

0 comments on commit 3167ca9

Please sign in to comment.