fix: sidebar spacing and topics overflowing

This commit is contained in:
2026-03-10 07:38:56 +06:00
parent a1295a0eb3
commit c09ecd7926
9 changed files with 101 additions and 8 deletions

View File

@ -45,6 +45,13 @@ const STYLES = `
overflow-x: hidden;
}
/* On desktop, account for sidebar */
@media (min-width: 768px) {
.ls-screen {
padding-left: calc(17rem + 1.25rem);
}
}
.ls-blob { position:fixed; pointer-events:none; z-index:0; filter:blur(48px); opacity:0.35; }
.ls-blob-1 { width:240px;height:240px;background:#fde68a;top:-80px;left:-80px;border-radius:60% 40% 70% 30%/50% 60% 40% 50%;animation:lsWobble1 14s ease-in-out infinite; }
.ls-blob-2 { width:190px;height:190px;background:#a5f3c0;bottom:-50px;left:6%;border-radius:40% 60% 30% 70%/60% 40% 60% 40%;animation:lsWobble2 16s ease-in-out infinite; }
@ -78,7 +85,6 @@ const STYLES = `
.ls-inner {
max-width: var(--content-max);
padding: 2rem 2rem 6rem;
}
}