43 lines
674 B
CSS
43 lines
674 B
CSS
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #F3F4F6;
|
|
}
|
|
|
|
.sidebar {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 250px;
|
|
background-color: #FFFFFF;
|
|
padding-top: 1rem;
|
|
border-right: 1px solid #e5e7eb;
|
|
}
|
|
|
|
.sidebar .nav-link {
|
|
color: #4B5563;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.sidebar .nav-link.active,
|
|
.sidebar .nav-link:hover {
|
|
color: #4F46E5;
|
|
background-color: #EEF2FF;
|
|
}
|
|
|
|
.sidebar .nav-link .feather {
|
|
margin-right: 1rem;
|
|
color: #9CA3AF;
|
|
}
|
|
|
|
.sidebar .nav-link.active .feather,
|
|
.sidebar .nav-link:hover .feather {
|
|
color: #4F46E5;
|
|
}
|
|
|
|
.main-content {
|
|
margin-left: 250px;
|
|
padding: 2rem;
|
|
}
|