36 lines
524 B
SCSS
36 lines
524 B
SCSS
.sidebar {
|
|||
|
|
width: 280px;
|
||
|
|
background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
|
||
|
|
padding: 30px 0;
|
||
|
|
border-radius: 0 30px 30px 0;
|
||
|
|
position: fixed;
|
||
|
|
height: 100vh;
|
||
|
|
overflow-y: auto;
|
||
|
|
z-index: 100;
|
||
|
|
}
|
||
|
|
|
||
|
|
.nav-item {
|
||
|
|
margin-bottom: 8px;
|
||
|
|
|
||
|
|
svg {
|
||
|
|
margin-right: 15px;
|
||
|
|
width: 20px;
|
||
|
|
height: 20px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.logo {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
padding: 0 30px 40px;
|
||
|
|
color: white;
|
||
|
|
font-size: 24px;
|
||
|
|
font-weight: 600;
|
||
|
|
text-transform: uppercase;
|
||
|
|
|
||
|
|
svg {
|
||
|
|
width: 32px;
|
||
|
|
height: 32px;
|
||
|
|
margin-right: 15px;
|
||
|
|
}
|
||
|
|
}
|