From e206619d20ad3902ebadb22d146528cb67719c54 Mon Sep 17 00:00:00 2001
From: Florian Wendelborn <1133858+FlorianWendelborn@users.noreply.github.com>
Date: Fri, 13 Aug 2021 19:01:29 +0200
Subject: [PATCH] ux(download): Improve Visibility of Download Links
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

It’s not obvious that the download links are there currently, as they’re not highlighted in any way. This small change should improve it and make it easier for people to find them.
---
 index.html | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/index.html b/index.html
index 1bce83a..1ec6c88 100644
--- a/index.html
+++ b/index.html
@@ -14,6 +14,10 @@
       .row-download {
         cursor: pointer;
       }
+
+      .row-download td:first-child:not(:hover) {
+        color: var(--bs-blue);
+      }
     </style>
     <title>LANDrop - Drop any files to any devices on your LAN</title>
   </head>