aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/components/StopGallery.tsx
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2025-12-01 00:10:58 +0100
committerAriel Costas Guerrero <ariel@costas.dev>2025-12-01 00:10:58 +0100
commit89d83f305db69f5bf86a4290341785b2673c35d0 (patch)
tree0e3596b7cac91804b8e6f40a14ede120eccba1fb /src/frontend/app/components/StopGallery.tsx
parenta477dda9dc4291ab25fffe2525acf44177154c86 (diff)
Add line list with link to official schedules
Diffstat (limited to 'src/frontend/app/components/StopGallery.tsx')
-rw-r--r--src/frontend/app/components/StopGallery.tsx5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/frontend/app/components/StopGallery.tsx b/src/frontend/app/components/StopGallery.tsx
index c1d9780..a45bfca 100644
--- a/src/frontend/app/components/StopGallery.tsx
+++ b/src/frontend/app/components/StopGallery.tsx
@@ -73,9 +73,8 @@ const StopGallery: React.FC<StopGalleryProps> = ({
{stops.map((_, index) => (
<span
key={index}
- className={`w-1.5 h-1.5 rounded-full transition-colors duration-200 ${
- index === activeIndex ? "bg-blue-600" : "bg-gray-300 dark:bg-gray-700"
- }`}
+ className={`w-1.5 h-1.5 rounded-full transition-colors duration-200 ${index === activeIndex ? "bg-blue-600" : "bg-gray-300 dark:bg-gray-700"
+ }`}
></span>
))}
</div>