primevue-mirror/assets/styles/layout/_sidebar.scss

150 lines
4.2 KiB
SCSS
Raw Normal View History

2023-02-28 08:29:30 +00:00
.layout-sidebar {
position: fixed;
left: 0;
top: 0;
height: 100%;
background-color: var(--surface-overlay);
width: 250px;
user-select: none;
transition: transform .4s cubic-bezier(.05,.74,.2,.99);
display: flex;
flex-direction: column;
padding: 1rem 0;
.logo {
display: flex;
justify-content: center;
}
nav {
padding: .5rem 1rem 2rem 1rem;
margin-top: 2rem;
flex-grow: 1;
overflow-y: auto;
}
.layout-menu {
list-style: none;
margin: 0;
padding: 0;
> li {
2023-09-16 12:01:29 +00:00
margin-bottom: .25rem;
2023-02-28 08:29:30 +00:00
> button,
> a {
display: flex;
width: 100%;
align-items: center;
padding: .5rem;
color: var(--surface-900);
font-weight: 600;
2023-09-16 12:01:29 +00:00
transition: all .2s;
2023-02-28 08:29:30 +00:00
.menu-icon {
width: 2rem;
height: 2rem;
border-radius: var(--border-radius);
margin-right: .5rem;
border: 1px solid var(--surface-border);
display: inline-flex;
align-items: center;
justify-content: center;
2023-09-16 12:01:29 +00:00
transition: all .2s;
2023-02-28 08:29:30 +00:00
i {
color: var(--surface-700);
2023-09-16 12:01:29 +00:00
transition: all .2s;
2023-02-28 08:29:30 +00:00
}
}
.menu-toggle-icon {
2023-09-16 12:01:29 +00:00
color: var(--surface-700);
2023-02-28 08:29:30 +00:00
margin-left: auto;
}
2023-09-16 12:01:29 +00:00
&:hover {
.menu-icon {
i {
color: var(--surface-900);
}
}
.menu-toggle-icon {
color: var(--surface-900);
}
}
&.router-link-active {
color: var(--primary-color);
> .menu-icon {
i {
color: var(--primary-color);
}
}
}
2023-02-28 08:29:30 +00:00
}
> div {
2023-09-16 12:01:29 +00:00
ol {
2023-02-28 08:29:30 +00:00
margin: 0 0 0 1.5rem;
2023-09-16 12:01:29 +00:00
padding: .25rem 0;
list-style: none;
li {
a {
color: var(--surface-700);
border-left: 1px solid var(--surface-border);
transition: all .2s;
font-weight: 400;
display: flex;
padding: .5rem .5rem .5rem 1rem;
color: var(--surface-700);
transition: all .2s;
&:focus-visible {
outline: 0 none;
box-shadow: inset var(--focus-ring);
}
&:hover {
color: var(--surface-900);
border-left-color: var(--surface-500);
}
2023-02-28 08:29:30 +00:00
2023-09-16 12:01:29 +00:00
&.router-link-active {
color: var(--primary-color);
border-left-color: var(--primary-color);
}
2023-02-28 08:29:30 +00:00
}
2023-09-16 12:01:29 +00:00
ol {
margin: 0;
padding: 0;
}
2023-02-28 08:29:30 +00:00
2023-09-16 12:01:29 +00:00
&:has(.menu-child-category) {
margin-top: 1rem;
}
&:has(.menu-child-category):first-child {
margin-top: 0rem;
}
}
2023-02-28 08:29:30 +00:00
}
}
}
.menu-child-category {
display: flex;
2023-09-16 12:01:29 +00:00
padding: .5rem .5rem .5rem 0;
2023-02-28 08:29:30 +00:00
font-size: .875rem;
2023-09-16 12:01:29 +00:00
font-weight: 600;
2023-02-28 08:29:30 +00:00
letter-spacing: 1px;
color: var(--surface-900);
margin-bottom: .25rem;
}
}
}