Make sidebar collapse centered and overlapping

Fix some styling stuff that was being done via JavaScript that can be
done via selectors.
This commit is contained in:
Eli Ribble 2026-01-29 14:56:02 +00:00
parent 4a99cb1166
commit aa3e22d814
No known key found for this signature in database
2 changed files with 25 additions and 3 deletions

View file

@ -28,8 +28,6 @@
document.getElementById('sidebarToggle').addEventListener('click', function() {
document.getElementById('sidebar').classList.toggle('collapsed');
document.getElementById('content').classList.toggle('expanded');
document.getElementById('sidebarToggleIcon').classList.toggle('bi-chevron-left');
document.getElementById('sidebarToggleIcon').classList.toggle('bi-chevron-right');
});
</script>
</body>