fixed tabbing onto header navigation elements

This commit is contained in:
Pagwin 2024-12-20 18:06:31 -05:00
parent 60d5a88967
commit 21f8b8e5b2
No known key found for this signature in database
GPG key ID: 81137023740CA260
2 changed files with 5 additions and 4 deletions

View file

@ -19,6 +19,7 @@ body {
a { a {
font-weight: bold; font-weight: bold;
text-decoration: none; text-decoration: none;
width: fit-content;
} }
a:hover { a:hover {

View file

@ -24,12 +24,12 @@
<body> <body>
<!-- originally handled dark v light via js but decided it would be better to just do it all in css and have no toggle 8a7917a0cd34bd7637d9a9a8ad327e4b847cdeed is the last commit where I had the system setup --> <!-- originally handled dark v light via js but decided it would be better to just do it all in css and have no toggle 8a7917a0cd34bd7637d9a9a8ad327e4b847cdeed is the last commit where I had the system setup -->
<header id="header"> <header id="header">
<a class="icon" rel="prefetch" href="/"><object class="icon svg" data="/static/images/house.svg"> <a class="" rel="prefetch" href="/"><object tabindex="-1" class="icon svg" data="/static/images/house.svg">
<a href="/" class="nav-link">home</a> <a href="/" class="nav-link" tabindex="-1">home</a>
</object></a> </object></a>
<div class="back-shover"></div> <div class="back-shover"></div>
<a class="icon" href="/index.xml"> <object class="icon svg" data="/static/images/rss.svg"> <a class="" href="/index.xml"> <object tabindex="-1" class="icon svg" data="/static/images/rss.svg">
<a href="/index.xml" class="nav-link">web feed</a> <a href="/index.xml" class="nav-link" tabindex="-1">web feed</a>
</object> </object>
</a> </a>
</header> </header>