sidebar enhancements
This commit is contained in:
12
src/pages/dashboard/dashboard.css
Normal file
12
src/pages/dashboard/dashboard.css
Normal 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;
|
||||
}
|
||||
@ -1,8 +1,9 @@
|
||||
import Sidebar from "../../components/Sidebar";
|
||||
import "./dashboard.css"
|
||||
|
||||
const Dashboard = () => {
|
||||
return (
|
||||
<div>
|
||||
<div className="dashboard">
|
||||
<h2>Dashboard</h2>
|
||||
<Sidebar/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user