Attempted to add Docusaurus compatible inter-document links
Summary
This merge request fixes an issue in the StopItem.svelte component where an invalid Tailwind CSS class was used for dark mode styling.
Problem
The class dark:bg[#000000] is not valid Tailwind syntax, causing the dark mode background style to be ignored. As a result, the component does not render correctly when dark mode is enabled.
Solution
Replaced the invalid class with a valid Tailwind class:
-
dark:bg[#000000]→dark:bg-black
This ensures proper background rendering in dark mode.
Impact
- Fixes UI inconsistency in dark mode
- Improves overall user experience
- Ensures compatibility with Tailwind CSS standards
Testing
- Verified component rendering in both light and dark modes
- Confirmed background color applies correctly in dark mode
Notes
This is a small but important fix to maintain consistent UI behavior across themes.