88 lines
1.4 KiB
CSS
88 lines
1.4 KiB
CSS
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #f3f4f6;
|
|
}
|
|
|
|
.sidebar {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
z-index: 100;
|
|
padding: 48px 0 0;
|
|
box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.sidebar-sticky {
|
|
position: relative;
|
|
top: 0;
|
|
height: calc(100vh - 48px);
|
|
padding-top: .5rem;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.nav-link {
|
|
font-weight: 500;
|
|
color: #4b5563;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.nav-link .feather {
|
|
margin-right: 8px;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.nav-link.active {
|
|
color: #4f46e5;
|
|
}
|
|
|
|
.nav-link:hover .feather,
|
|
.nav-link.active .feather {
|
|
color: inherit;
|
|
}
|
|
|
|
.main-content {
|
|
margin-left: 240px;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
}
|
|
|
|
.card-title {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.brand-logo {
|
|
font-weight: 700;
|
|
font-size: 1.5rem;
|
|
color: #111827;
|
|
}
|
|
|
|
@media (max-width: 767.98px) {
|
|
.sidebar {
|
|
width: 100%;
|
|
height: auto;
|
|
position: relative;
|
|
box-shadow: none;
|
|
}
|
|
.main-content {
|
|
margin-left: 0;
|
|
}
|
|
.sidebar-sticky {
|
|
height: auto;
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
|