Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(t3-app): resolve target area of Documentation links in TechnologyCard #510

Merged
merged 8 commits into from
Oct 1, 2022
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
5 changes: 5 additions & 0 deletions .changeset/young-pears-wonder.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-t3-app": patch
---

fix: resolve target area of `Documentation` links in TechnologyCard
2 changes: 1 addition & 1 deletion cli/template/page-studs/index/with-auth-trpc-tw.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const TechnologyCard = ({
<h2 className="text-lg text-gray-700">{name}</h2>
<p className="text-sm text-gray-600">{description}</p>
<a
className="mt-3 text-sm text-violet-500 underline decoration-dotted underline-offset-2"
className="m-auto mt-3 w-fit text-sm text-violet-500 underline decoration-dotted underline-offset-2"
href={documentation}
target="_blank"
rel="noreferrer"
Expand Down
2 changes: 1 addition & 1 deletion cli/template/page-studs/index/with-trpc-tw.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const TechnologyCard = ({
<h2 className="text-lg text-gray-700">{name}</h2>
<p className="text-sm text-gray-600">{description}</p>
<a
className="mt-3 text-sm text-violet-500 underline decoration-dotted underline-offset-2"
className="m-auto mt-3 w-fit text-sm text-violet-500 underline decoration-dotted underline-offset-2"
href={documentation}
target="_blank"
rel="noreferrer"
Expand Down
2 changes: 1 addition & 1 deletion cli/template/page-studs/index/with-tw.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const TechnologyCard = ({
<h2 className="text-lg text-gray-700">{name}</h2>
<p className="text-sm text-gray-600">{description}</p>
<a
className="mt-3 text-sm text-violet-500 underline decoration-dotted underline-offset-2"
className="m-auto mt-3 w-fit text-sm text-violet-500 underline decoration-dotted underline-offset-2"
href={documentation}
target="_blank"
rel="noreferrer"
Expand Down