Keerthana - Fix Basic Information tab, Volunteering Times Tab Dark Mode Background and Save Button Visibility#5097
Merged
one-community merged 1 commit intodevelopmentfrom Apr 9, 2026
Conversation
✅ Deploy Preview for highestgoodnetwork-dev ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
Rajasrivatsansrinivasan
approved these changes
Apr 3, 2026
Rajasrivatsansrinivasan
left a comment
There was a problem hiding this comment.
Checked out the PR locally and validated the changes on the User Profile page in dark mode. Verified that the background issues in both the Basic Information and Volunteering Times tabs are resolved, with consistent dark styling across rows and labels. Also confirmed that the Save Changes button is visible and functional after making updates. The changes work as expected with no regressions observed. Approving.
sundarmachani
approved these changes
Apr 4, 2026
Author
Member
|
Thank you all, merging! |
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.







Description
This PR fixes dark mode UI issues on the User Profile page, including incorrect white background colors in the Basic Information tab, Volunteering Times tab and improves the visibility of the Save Changes button in dark mode. It also refactors the Volunteering Time tab styling by migrating from global CSS to CSS modules for better scoped styling and maintainability.
Related PRS (if any):
This frontend PR is related to the #XXX backend PR.
To test this backend PR you need to checkout the #XXX frontend PR.
Main changes explained:
VolunteeringTimeTab.module.cssCreated by mergingtimeTab.cssandVolunteeringTimeTab.cssinto a single CSS module. Converted all class names to camelCase. Added.darkModeRowand.darkModemarker classes to fix white background on rows in dark mode, following the same pattern used inBasicInformationTab.module.css.VolunteeringTimeTab.jsx- Replaced global CSS imports with the new CSS module. Updated allclassNamestrings to use scoped module references. Appliedstyles.darkModeandstyles.darkModeRowto the root div and allRowcomponents.SaveButton.jsxFixed invisible Save Changes button in dark mode by changingcolorprop to'primary'and applying an explicit light background style in dark mode.BasicInformationTabFixed dark mode background for all rows using.dark-mode :global(.row)pattern inBasicInformationTab.module.css. Added.dark-label-colfor label column styling and appliedstyles['dark-mode']marker class to the root div.How to test:
npm installand start the app locallyScreenshots or videos of changes:
Before fix Basic Information tab

After fix Basic Information tab

Before fix Volunteering Times tab


After fix Volunteering Times tab
Note:
The Save Changes button correctly appears faded when no changes have been made - this is expected behavior. The button becomes fully visible and active once a field is edited.