Spookie/assets/styles/components/_sidebar.scss

23 lines
343 B
SCSS

// sidebar
#sidebar {
min-width: 180px;
max-width: 180px;
height: 100%;
display: inline;
white-space: nowrap;
overflow: hidden;
float: left;
background-color: $jet-black;
transition: min-width 0.5s, max-width 0.5s;
}
#sidebar.active {
min-width: 60px;
max-width: 60px;
}
#sidebar.active .menuText {
display: none;
}