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 broken links #6

Merged
merged 7 commits into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix bugs
  • Loading branch information
fuma-nama committed Feb 12, 2024
commit 5816a324ff70572a442371ed685da224c3312cdb
6 changes: 3 additions & 3 deletions app/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
@tailwind components;
@tailwind utilities;

.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
list-style-position: initial;
}
.prose :where(ul):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
list-style-position: initial;
}
1 change: 1 addition & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export default function Layout({ children }: { children: React.ReactNode }) {
{ url: "https://nextjs-forum.com", text: "nextjs-forum.com" },
]}
nav={{
title: "Next.js Discord Server",
links: [
{
label: "Github",
Expand Down