Skip to content

Commit fa2944f

Browse files
committed
feat: improve the ui
1 parent 8088f5e commit fa2944f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/App.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
cn(
110110
'rounded-full border-emerald-500 text-brand-foreground bg-emerald-500/20 hover:bg-emerald-500/50',
111111
brandColor === 'emerald' &&
112-
'bg-emerald-500 border-white border-2'
112+
'bg-emerald-500 border-emerald-800 dark:border-emerald-200 border-2'
113113
)
114114
"
115115
@click="brandColor = 'emerald'"
@@ -121,7 +121,7 @@
121121
cn(
122122
'rounded-full border-violet-500 text-brand-foreground bg-violet-500/20 hover:bg-violet-500/50',
123123
brandColor === 'violet' &&
124-
'bg-violet-500 border-white border-2'
124+
'bg-violet-500 border-violet-800 dark:border-violet-200 border-2'
125125
)
126126
"
127127
@click="brandColor = 'violet'"
@@ -133,7 +133,7 @@
133133
cn(
134134
'rounded-full border-fuchsia-500 text-brand-foreground bg-fuchsia-500/20 hover:bg-fuchsia-500/50',
135135
brandColor === 'fuchsia' &&
136-
'bg-fuchsia-500 border-white border-2'
136+
'bg-fuchsia-500 border-fuchsia-800 dark:border-fuchsia-200 border-2'
137137
)
138138
"
139139
@click="brandColor = 'fuchsia'"
@@ -145,7 +145,7 @@
145145
cn(
146146
'rounded-full border-sky-500 text-brand-foreground bg-sky-500/20 hover:bg-sky-500/50',
147147
brandColor === 'sky' &&
148-
'bg-sky-500 border-white border-2'
148+
'bg-sky-500 border-sky-800 dark:border-sky-200 border-2'
149149
)
150150
"
151151
@click="brandColor = 'sky'"
@@ -157,7 +157,7 @@
157157
cn(
158158
'rounded-full border-amber-500 text-brand-foreground bg-amber-500/20 hover:bg-amber-500/50',
159159
brandColor === 'amber' &&
160-
'bg-amber-500 border-white border-2'
160+
'bg-amber-500 border-amber-800 dark:border-amber-200 border-2'
161161
)
162162
"
163163
@click="brandColor = 'amber'"

src/components/Hero.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
Pre-built auth widgets to get started in minutes.
3434
</p>
3535
<p className="text-neutral-500 dark:text-neutral-400 mt-0">
36-
Customizable authentication UI component with custom themes and
37-
extensible styles to match your brand and aesthetic
36+
Customizable authentication UI component with Shadcn Vue UI and
37+
extensible themes & styles to match your brand and aesthetic
3838
</p>
3939
<div
4040
className="text-neutral-500 dark:text-neutral-400 mb-4 pt-6 flex items-center space-x-2"

src/components/ui/anchor/Anchor.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const delegatedProps = computed(() => {
1212
<template>
1313
<a
1414
v-bind="delegatedProps"
15-
class="group text-center underline block text-sm w-full items-center rounded-md border border-transparent px-2 py-1 hover:no-underline font-semibold text-muted-foreground"
15+
class="group text-center underline block text-sm w-full items-center rounded-md border border-transparent px-2 py-1 font-semibold text-muted-foreground"
1616
:class="props.class"
1717
>
1818
<slot />

0 commit comments

Comments
 (0)