mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
fix: fix global layout overscroll + link colors (#404)
This commit is contained in:
@@ -54,7 +54,7 @@ export default async function AppLayout({
|
||||
<Link
|
||||
as={NextLink}
|
||||
href="/transcripts/new"
|
||||
className="hover:underline focus-within:underline underline-offset-2 decoration-[.5px] font-light px-2"
|
||||
className="font-light px-2"
|
||||
>
|
||||
Create
|
||||
</Link>
|
||||
@@ -64,7 +64,7 @@ export default async function AppLayout({
|
||||
<Link
|
||||
href="/browse"
|
||||
as={NextLink}
|
||||
className="hover:underline focus-within:underline underline-offset-2 decoration-[.5px] font-light px-2"
|
||||
className="font-light px-2"
|
||||
prefetch={false}
|
||||
>
|
||||
Browse
|
||||
@@ -79,7 +79,7 @@ export default async function AppLayout({
|
||||
<Link
|
||||
href="/rooms"
|
||||
as={NextLink}
|
||||
className="hover:underline focus-within:underline underline-offset-2 decoration-[.5px] font-light px-2"
|
||||
className="font-light px-2"
|
||||
prefetch={false}
|
||||
>
|
||||
Rooms
|
||||
@@ -88,16 +88,6 @@ export default async function AppLayout({
|
||||
) : (
|
||||
<></>
|
||||
)}
|
||||
·
|
||||
<About buttonText="About" />
|
||||
{privacy ? (
|
||||
<>
|
||||
·
|
||||
<Privacy buttonText="Privacy" />
|
||||
</>
|
||||
) : (
|
||||
<></>
|
||||
)}
|
||||
{requireLogin ? (
|
||||
<>
|
||||
·
|
||||
|
||||
Reference in New Issue
Block a user