mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
41 lines
762 B
SCSS
41 lines
762 B
SCSS
// scss/components/navigation/template-sidebar.module.scss
|
|
|
|
.templateSidebar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-2);
|
|
}
|
|
|
|
.heading {
|
|
margin: 0 0 var(--spacing-2) 0;
|
|
font-size: var(--font-size-lg);
|
|
font-weight: var(--font-weight-semibold);
|
|
}
|
|
|
|
.categoryButton {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--spacing-2);
|
|
justify-content: flex-start;
|
|
text-align: left;
|
|
width: 100%;
|
|
}
|
|
|
|
.categoryIcon {
|
|
font-size: 18px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.categoryName {
|
|
flex: 1;
|
|
}
|
|
|
|
.categoryCount {
|
|
margin-left: auto;
|
|
background-color: var(--color-background-secondary);
|
|
padding: 2px var(--spacing-2);
|
|
border-radius: var(--border-radius-full);
|
|
font-size: var(--font-size-xs);
|
|
font-weight: var(--font-weight-medium);
|
|
}
|