Skip to content

Commit ce3651a

Browse files
committed
fix: website dialog
1 parent f6bf671 commit ce3651a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

apps/dashboard/app/globals.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,8 +424,8 @@
424424
--secondary-brightest: oklch(0.34 0.006 286.033);
425425
--secondary-foreground: oklch(0.88 0.008 286.033);
426426

427-
--muted: oklch(0.50 0.006 286.033);
428-
--muted-foreground: oklch(0.60 0.006 286.033);
427+
--muted: oklch(0.97 0 0);
428+
--muted-foreground: oklch(0.556 0 0);
429429
--accent: oklch(0.25 0.006 286.033);
430430
--accent-brighter: oklch(0.30 0.006 286.033);
431431
--accent-disabled: oklch(0.34 0.006 286.033);

apps/dashboard/components/website-dialog.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,13 +199,13 @@ export function WebsiteDialog({
199199
<FormLabel>Domain</FormLabel>
200200
<FormControl>
201201
<div className="flex items-center">
202-
<span className="inline-flex h-9 items-center rounded-l-md border border-r-0 bg-dialog px-3 text-accent-foreground text-sm">
202+
<span className="inline-flex h-9 items-center rounded-none border border-r-0 bg-dialog px-3 text-accent-foreground text-sm">
203203
https://
204204
</span>
205205
<Input
206206
placeholder="your-company.com"
207207
{...field}
208-
className="rounded-l-none"
208+
className="rounded-l-none border border-border border-l-0"
209209
onChange={(e) => {
210210
let domain = e.target.value.trim();
211211
if (

0 commit comments

Comments
 (0)