Skip to content

Commit

Permalink
update margin on pages
Browse files Browse the repository at this point in the history
  • Loading branch information
minhd-vu committed Feb 27, 2024
1 parent 28975d2 commit a729096
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/leaderboard/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default async function Leaderboard() {
));

return (
<div className="overflow-x-auto bg-base-300 mx-4 rounded-xl">
<div className="overflow-x-auto bg-base-300 mx-4 my-5 rounded-lg">
<table className="table">
<thead>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion app/user/[name]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default async function UserById({

return (
<>
<h1 className="text-5xl font-bold text-center">{user.name}</h1>
<h1 className="text-5xl font-bold text-center mt-4">{user.name}</h1>
<p className="text-sm font-light italic text-center">{user.id}</p>
<div className="stats shadow bg-base-300 m-4">
<div className="stat">
Expand Down
2 changes: 1 addition & 1 deletion components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default async function Navbar() {
}

return (
<div className="navbar bg-base-100">
<div className="navbar bg-base-300">
<div className="flex-1">
<a className="btn btn-ghost text-xl" href="/">
Assassins
Expand Down

0 comments on commit a729096

Please sign in to comment.