Add chonky border underline on logotype link hover

Adrian Simmons created

Signed-off-by: Adrian Simmons <adrinux@perlucida.co.uk>

Change summary

ws/static/styles.css | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)

Detailed changes

ws/static/styles.css 🔗

@@ -181,17 +181,15 @@ header .wrapper {
 
 header h1 {
 	margin-block: 1.2rem;
+	color: var(--link);
 }
 
 header h1 a {
 	text-decoration: none;
 }
 
-/* On the home dashboard pretend 'Willow' is not a link
-   Relies on the dashboard page being the only one with
-   a div.projects */
-body:has(div.projects) header h1 a {
-	cursor: default;
+header h1 a:hover {
+	border-bottom: 4px solid var(--link);
 }
 
 header nav {