Skip to content

Commit 39933d7

Browse files
fixed navbar width and netlify urls
1 parent 7303049 commit 39933d7

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

apps/api/src/chat/chat.gateway.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import { RoomsService } from './rooms.service';
2121
origin: [
2222
'https://mindsmesh.vercel.app',
2323
'https://mindsmesh-docker-api.onrender.com',
24-
'https://mindsmesh-freelance-platform.netlify.app',
25-
'https://mindsmesh-freelance-platform.netlify.app/',
24+
'https://mindsmesh.netlify.app',
25+
'https://mindsmesh.netlify.app/',
2626
'http://localhost:5173',
2727
],
2828
methods: ['GET', 'POST', 'PUT', 'DELETE', 'PATCH', 'OPTIONS'],

apps/api/src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ async function bootstrap() {
2424
origin: [
2525
'https://mindsmesh.vercel.app',
2626
'https://mindsmesh-docker-api.onrender.com',
27-
'https://mindsmesh-freelance-platform.netlify.app',
28-
'https://mindsmesh-freelance-platform.netlify.app/',
27+
'https://mindsmesh.netlify.app',
28+
'https://mindsmesh.netlify.app/',
2929
'http://localhost:5173',
3030
],
3131
methods: ['GET', 'POST', 'PUT', 'DELETE', 'PATCH', 'OPTIONS'],

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="container mx-auto flex justify-between items-center">
8080
{/* Logo and Brand Name */}
8181
<Link
8282
to="/"

apps/client/tailwind.config.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ module.exports = {
1414
center: true,
1515
padding: "2rem",
1616
screens: {
17-
"2xl": "1400px",
17+
sm: "100%",
18+
md: "100%",
19+
lg: "100%",
20+
xl: "100%",
21+
"2xl": "100%",
1822
},
1923
},
2024
extend: {

0 commit comments

Comments
 (0)