Fix dark mode background color rendering issue in the footer component where the custom dark background color (#1C1F23) was not being applied consistently across different devices due to missing !important declaration. Changes: - Add !important to dark mode background color class in footer - Change `dark:bg-[#1C1F23]` to `dark:!bg-[#1C1F23]` - Ensure footer dark mode styling is not overridden by other CSS rules This resolves visual inconsistencies where the footer would not display the intended dark background color in dark theme mode on certain devices or screen configurations.
React Template
Basic Usages
# Runs the app in the development mode
npm start
# Builds the app for production to the `build` folder
npm run build
If you want to change the default server, please set REACT_APP_SERVER environment variables before build,
for example: REACT_APP_SERVER=http://your.domain.com.
Before you start editing, make sure your Actions on Save options have Optimize imports & Run Prettier enabled.