fixing logout, people not scrolling, sidebar being too short

This commit is contained in:
metacryst
2026-03-19 08:54:53 -05:00
parent 5a56dfa051
commit 8dd2312aa0
5 changed files with 14 additions and 9 deletions

View File

@@ -11,7 +11,6 @@ class Sidebar extends Shadow {
.onClick(function (done) {
if(done) {
if (this.innerText === "Logout") {
$("sidebar-").close()
global.onLogout()
return
} else if (this.innerText === "Profile") {
@@ -30,13 +29,14 @@ class Sidebar extends Shadow {
})
.gap(2, em)
.paddingTop(30, vh)
.height(100, vh)
.height(105, vh)
.width(70, vw)
.borderLeft("1px solid var(--divider)")
.color("var(--text)")
.position("fixed")
.background("var(--sidebar)")
.xRight(-71, vw)
.top(-5, vh)
.transition("right .3s")
.zIndex(3)
}