Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.

Commit 977f807

Browse files
author
Manuel Proß
committed
refactor(web): replace arbitrary tailwind classes with custom border classes
1 parent 1462eef commit 977f807

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web/src/components/Layout/Navigation/Navigation.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ export type Page = {
1818

1919
export default function Navigation({ menu }: NavigationProps) {
2020
return (
21-
<header className="h-full rounded-[35px] pt-8 bg-gray-5">
21+
<header className="h-full rounded pt-8 bg-gray-5">
2222
<nav className="flex flex-col items-center h-full">
2323
<Link className="mb-8" href="/">
2424
<Image src="/vim.svg" width={64} height={64} alt="Vim Logo" />
2525
</Link>
2626
<ul className="w-full flex flex-col gap-2 px-8">
27-
<li className="block rounded-xl py-2 px-4 text-white hover:bg-gray-4 hover:cursor-pointer">
27+
<li className="block rounded-sm py-2 px-4 text-white hover:bg-gray-4 hover:cursor-pointer">
2828
<Link href="#">Downloads</Link>
2929
</li>
30-
<li className="block rounded-xl py-2 px-4 text-white hover:bg-gray-4 hover:cursor-pointer">
30+
<li className="block rounded-sm py-2 px-4 text-white hover:bg-gray-4 hover:cursor-pointer">
3131
<Link href="#">Downloads</Link>
3232
</li>
3333

0 commit comments

Comments
 (0)