12 lines
178 B
SCSS
12 lines
178 B
SCSS
|
.sidebar{
|
||
|
width: calc(25% - 20px);
|
||
|
|
||
|
@media screen and (max-width: $sidebarcollapse){
|
||
|
width: 100%;
|
||
|
|
||
|
.index &{
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
}
|