Skip to content

Commit 2b2dc94

Browse files
improving navbar width
1 parent 7f0eccf commit 2b2dc94

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

apps/client/src/App.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
-webkit-box-align: center;
7575
-ms-flex-align: center;
7676
align-items: center;
77-
max-width: 1200px;
77+
/* max-width: 1200px; */
7878
margin: 0 auto;
7979
}
8080
.navbar .navbarTitle {

apps/client/src/assets/scss/_navbar.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
display: flex;
1313
justify-content: space-between;
1414
align-items: center;
15-
max-width: 1200px;
15+
/* max-width: 1200px; */
1616
margin: 0 auto;
1717
}
1818

apps/client/src/components/NavBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const Navbar: React.FC = () => {
7676

7777
return (
7878
<nav className={`navbar p-2 h-16 top-0 z-50 transition-colors duration-500`}>
79-
<div className="navbarContent container mx-auto flex justify-between items-center">
79+
<div className="navbarContent container mx-auto justify-between ">
8080
{/* Logo and Brand Name */}
8181
<Link
8282
to="/"

apps/client/tailwind.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = {
1414
center: true,
1515
padding: "2rem",
1616
screens: {
17-
"2xl": "1400px",
17+
"2xl": "2100px",
1818
},
1919
},
2020
extend: {

0 commit comments

Comments
 (0)