This repository was archived by the owner on May 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Implement hamburger navigation mobile-friendly sidebar and topbar #186
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
8babf0d
implement hamburger navigation mobile-friendly sidebar and topbar wit…
moonshadow2 c90d98f
added files for running it
moonshadow2 a5b019a
Fixed the transparent three line bug
moonshadow2 38aa183
Fix widget view on mobile
moonshadow2 2299dfd
Rounded the big widget panel
moonshadow2 ad5abe1
Added padding so top of card is cut off when hovered
moonshadow2 d0f3b7a
Dashboard wrapped in a section tag #180
moonshadow2 b956810
Fixed the dashboard view button issue
moonshadow2 1c93da2
The view button is now visible
moonshadow2 9d443ea
you should have not uploaded .venv
IanRohrbacher File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| import { writable } from "svelte/store"; | ||
|
|
||
| export const sidebarOpen = writable(false); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -49,3 +49,7 @@ export default defineConfig(({ mode }) => { | |
| } | ||
| }; | ||
| }); | ||
|
|
||
| optimizeDeps: { | ||
| exclude: ['@azure/msal-browser'] | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Class name mismatch: hamburger lines won't be styled.
The spans use
class="hamburger-line"but the CSS incomponents.css(lines 61-67) defines.hamburger-span. This mismatch will cause the hamburger icon bars to be invisible/unstyled.🐛 Fix: Use consistent class name
Either update the HTML to match the CSS:
<button class="hamburger" aria-label="Toggle menu" onclick={() => sidebarOpen.update(open => !open)}> - <span class="hamburger-line"></span> - <span class="hamburger-line"></span> - <span class="hamburger-line"></span> + <span class="hamburger-span"></span> + <span class="hamburger-span"></span> + <span class="hamburger-span"></span> </button>Or update the CSS in
components.cssto use.hamburger-lineinstead of.hamburger-span.📝 Committable suggestion
🤖 Prompt for AI Agents