Skip to content

Commit

Permalink
Update Link Styling & Fix Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Dec 4, 2023
1 parent 9f7cb64 commit cc82ffc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,7 @@ header {
font-weight: bold;
@apply border-b border-gray-300 pb-1 mt-4 first:mt-0;
}

.link {
@apply text-blue-500 hover:text-blue-700 hover:underline;
}
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function App() {
<div className="px-6 py-3 flex gap-2">
<h1>V3X Labs</h1>
<span className="text-neutral-400">
- Empowering Opensource
- Empowering open-source
</span>
</div>
</div>
Expand Down
1 change: 1 addition & 0 deletions components/sections/contributors/RecentContributors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const contributors_a = [
'jontes-tech',
'robiot',
'prokopschield',
'creedscode',
'm1guelpf',
'anaarsonist',
'hattorius',
Expand Down
2 changes: 1 addition & 1 deletion components/sections/discord/ChatDiscord.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const ChatDiscord = () => {
<a
href="https://discord.gg/v3x"
target="_blank"
className="flex text-center font-bold items-center gap-2 bg-[#8498FB] text-white px-4 ml-auto mt-2 py-2 rounded-md drop-shadow text-sm"
className="flex w-fit text-center font-bold items-center gap-2 bg-[#8498FB] text-white px-4 ml-auto mt-2 py-2 rounded-md drop-shadow text-sm"
>
Open Discord
<FiExternalLink />
Expand Down
2 changes: 1 addition & 1 deletion components/sections/projects/Projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const Projects = () => {
<a
href={entry.link}
target="_blank"
className="text-blue-500 font-bold block mb-1"
className="link font-bold block mb-1"
>
{entry.name}
</a>
Expand Down

0 comments on commit cc82ffc

Please sign in to comment.