29 lines
370 B
SCSS
29 lines
370 B
SCSS
.sidebar {
|
|
width: 250px;
|
|
padding: 20px 20px 20px 5px;
|
|
|
|
border-right: 1px solid #eee;
|
|
}
|
|
|
|
.sidebarToggle {
|
|
display: flex;
|
|
position: relative;
|
|
width: 60px;
|
|
cursor: pointer;
|
|
justify-content: center;
|
|
|
|
&:hover {
|
|
background-color: #f5f5f5;
|
|
|
|
.menuIcon {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.menuIcon {
|
|
margin-top: 18px;
|
|
height: 28px;
|
|
opacity: 0.15;
|
|
}
|