Skip to content

Commit 853bd97

Browse files
committed
fix: Add hover state to links
1 parent b965723 commit 853bd97

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

src/features/auth/ForgotPassword.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ export function ForgotPassword() {
8080
</form>
8181
</Form>
8282
<div className="flex px-4 mt-4 underline place-content-between">
83-
<Link className="text-sm" to="/sign-in">
83+
<Link className="text-sm hover:text-blue-300" to="/sign-in">
8484
Sign in to your account
8585
</Link>
86-
<Link className="text-sm" to="/sign-up">
86+
<Link className="text-sm hover:text-blue-300" to="/sign-up">
8787
Sign up for free
8888
</Link>
8989
</div>

src/features/auth/SignIn.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ export function SignIn() {
113113
</form>
114114
</Form>
115115
<div className="flex px-4 mt-4 underline place-content-between">
116-
<Link className="text-sm" to="/sign-up">
116+
<Link className="text-sm hover:text-blue-300" to="/sign-up">
117117
Sign up for free
118118
</Link>
119-
<Link className="text-sm" to="/forgot-password">
119+
<Link className="text-sm hover:text-blue-300" to="/forgot-password">
120120
Forgot password?
121121
</Link>
122122
</div>

src/features/auth/SignUp.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -175,17 +175,19 @@ export function SignUp() {
175175
)}
176176
/>
177177
<p className="text-xs">By creating an account, you agree to
178-
the <a rel="noopener" href="https://www.harpersystems.dev/legal/privacy-policy" target="_blank" className="underline">Privacy
179-
Policy</a> and <a rel="noopener" href="https://www.harpersystems.dev/legal/harperdb-cloud-terms-of-service" target="_blank" className="underline">Terms
180-
of Service</a></p>
178+
the <a rel="noopener" href="https://www.harpersystems.dev/legal/privacy-policy" target="_blank" className="underline hover:text-blue-300">
179+
Privacy Policy
180+
</a> and <a rel="noopener" href="https://www.harpersystems.dev/legal/harperdb-cloud-terms-of-service" target="_blank" className="underline hover:text-blue-300">
181+
Terms of Service
182+
</a></p>
181183

182184
<Button type="submit" variant="submit" className="w-full my-2 rounded-full">
183185
Sign Up For Free
184186
</Button>
185187
</form>
186188
</Form>
187189
<div className="flex px-4 mt-4 underline place-content-between">
188-
<Link className="m-auto text-sm" to="/sign-in">
190+
<Link className="m-auto text-sm hover:text-blue-300" to="/sign-in">
189191
Already have an account? Sign in instead.
190192
</Link>
191193
</div>

0 commit comments

Comments
 (0)