This commit is contained in:
hailin 2025-11-26 02:09:53 -08:00
parent f6ede89b18
commit ef5e9aec3f
2 changed files with 38 additions and 2 deletions

View File

@ -3268,6 +3268,7 @@
"integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@rtsao/scc": "^1.1.0",
"array-includes": "^3.1.9",

View File

@ -21,28 +21,63 @@
&--collapsed {
width: $sidebar-collapsed-width;
align-items: center;
.sidebar__header {
justify-content: center;
padding: 0 $spacing-sm;
padding: 0;
width: 100%;
}
.sidebar__logo {
justify-content: center;
}
.sidebar__logoText {
display: none;
}
.sidebar__navWrapper {
width: 100%;
align-items: center;
}
.sidebar__nav {
width: 100%;
padding: 16px 8px;
align-items: center;
}
.sidebar__toggle {
position: static;
position: absolute;
right: -12px;
}
.sidebar__item {
justify-content: center;
padding: 8px;
width: calc(100% - 16px);
}
.sidebar__label {
display: none;
}
.sidebar__bottomNav {
padding: 16px 8px;
align-items: center;
}
.sidebar__bottomMenu {
align-items: center;
width: 100%;
}
.sidebar__logoutItem {
justify-content: center;
padding: 8px;
width: calc(100% - 16px);
}
}
&__header {