Skip to content

Commit

Permalink
Merge branch 'main' of github.com:rgtlai/CareDash
Browse files Browse the repository at this point in the history
  • Loading branch information
rgtlai committed Oct 22, 2024
2 parents e5bbd11 + 5880217 commit 6654108
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Custom frontend</title>
<title>CareDash - Simplifying Your Healthcare Journey!</title>
</head>
<body>
<div id="root"></div>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function App() {
<Login onLogin={handleLogin} />
) : (<>
<Chat token={token} onLogout={handleLogout} />
<nav>
<nav className="static-nav">
<ul>
<li><Link to="/document-management">Document Management</Link></li>
<li><Link to="/patient-records">Patient Records</Link></li>
Expand Down
9 changes: 9 additions & 0 deletions frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -853,4 +853,13 @@ h6 {

.conversation-bubble .submit-btn:hover {
background-color: #7a27b3;
}

.static-nav {
border: 1px solid red;
}

.static-nav ul {
display: block;
position: absolute;
}

0 comments on commit 6654108

Please sign in to comment.