style changes especially sidebar

This commit is contained in:
2025-09-22 12:41:58 +03:00
parent 774f34b971
commit 181fe61368
9 changed files with 95 additions and 53 deletions

View File

@ -5,8 +5,22 @@
max-width:100%;
}
.login-link:hover {
color: var(--links-hover-color);
text-decoration: none;
.sidebar-container {
display: flex;
}
.dashboard-content {
display: flex;
height: 100%;
width: 100%;
justify-content: center;
align-items: center;
}
.dashboard-text {
display: flex;
max-width: 40vw;
text-align: center;
text-wrap: pretty;
outline: 1px solid thistle;
}

View File

@ -4,8 +4,14 @@ import "./dashboard.css"
const Dashboard = () => {
return (
<div className="dashboard">
<h2>Dashboard</h2>
<Sidebar/>
<div>
<Sidebar/>
</div>
<div className="dashboard-content">
<div className="dashboard-text">
<h2>Dashboard Content<br/>WIP</h2>
</div>
</div>
</div>
)
}