From 5ecc34a046282f489921a65ae49f59ce72a78220 Mon Sep 17 00:00:00 2001 From: Rumperuu Date: Sun, 30 Oct 2022 00:15:06 +0000 Subject: [PATCH] Fix past trip links --- public/css/app.css | 6 ++++-- resources/views/past-trips.blade.php | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/public/css/app.css b/public/css/app.css index 3c15425..0501cb2 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -44,12 +44,14 @@ details h2 { font-size: 0.8em; } -#allCheckinsLink { +#allCheckinsLink, +#pastTripsList a { opacity: 0.7; color: var(--dark, #020202); } -#allCheckinsLink:hover { +#allCheckinsLink:hover, +#pastTripsList a:hover { opacity: 1; } diff --git a/resources/views/past-trips.blade.php b/resources/views/past-trips.blade.php index aed2969..c19045a 100644 --- a/resources/views/past-trips.blade.php +++ b/resources/views/past-trips.blade.php @@ -1,6 +1,6 @@ - @include('partials.head'); + @include('partials.head')