Merged
Conversation
Updated `_LoginPartial.cshtml` to replace the "Manage" and "Logout" links with a dropdown menu under the user's greeting. Added a "My Games" option to the dropdown, which currently displays a placeholder alert. Styled the dropdown menu in `site.css` to ensure proper positioning, visibility on hover, and user-friendly interactivity. Added hover effects and block-level alignment for dropdown items. Improves UI/UX and prepares for future features like "My Games."
…r styleing to the buttons on the right hand side of the navbar.
logprogrammer92
approved these changes
Nov 17, 2025
Contributor
logprogrammer92
left a comment
There was a problem hiding this comment.
Looks really good to me
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Closes #44
This pull request introduces a user dropdown menu to the navigation bar for signed-in users, providing a more interactive and organized way to access account-related actions. It also improves the visual styling of navigation buttons and ensures static assets are correctly served.
Navigation and UI enhancements:
_LoginPartial.cshtmlto display a dropdown menu with options for "Settings," "My Games" (currently a placeholder), and "Logout," accessible via a clickable greeting. Added thenav-btn-bordersclass for improved button styling.site.cssto style the user dropdown menu, greeting, and navigation buttons, including positioning, hover effects, and borders for a polished look.Functionality improvements:
site.jsto handle toggling and closing of the user dropdown menu when interacting with the greeting or clicking outside the menu.Program.csto ensure that site assets like JavaScript and CSS are properly loaded.