34 lines
727 B
CSS
34 lines
727 B
CSS
nav.layout-sidebar div.category {
|
|
margin-bottom: 8px;
|
|
width: 100%;
|
|
height: fit-content;
|
|
}
|
|
|
|
nav.layout-sidebar div.category:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
nav.layout-sidebar div.category button.toggle {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
border-bottom: var(--border-thickness) solid transparent;
|
|
padding: 8px 8px 8px 0px;
|
|
width: 100%;
|
|
}
|
|
|
|
nav.layout-sidebar div.category button.toggle img.icon {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
nav.layout-sidebar div.category.open button.toggle {
|
|
margin-bottom: 8px;
|
|
border-color: var(--font-color-secondary);
|
|
}
|
|
|
|
nav.layout-sidebar div.category.close div.items {
|
|
display: none;
|
|
}
|