sidebar enhancements

This commit is contained in:
2025-09-19 17:13:04 +03:00
parent 716b4bc711
commit 774f34b971
7 changed files with 57 additions and 21 deletions

View File

@ -0,0 +1,12 @@
.dashboard {
display: flex;
width: 100vw;
height: 100vh;
max-width:100%;
}
.login-link:hover {
color: var(--links-hover-color);
text-decoration: none;
}

View File

@ -1,8 +1,9 @@
import Sidebar from "../../components/Sidebar";
import "./dashboard.css"
const Dashboard = () => {
return (
<div>
<div className="dashboard">
<h2>Dashboard</h2>
<Sidebar/>
</div>