navlinks no longer go over the whole site

This commit is contained in:
Sarah Faey 2022-12-11 12:16:23 +01:00
parent 3f2e6b2271
commit 5078475e2f
2 changed files with 2 additions and 1 deletions

View file

@ -34,7 +34,7 @@
@foreach(string logFolder in _availabeLogs) @foreach(string logFolder in _availabeLogs)
{ {
string path = $"{LOGS}/{_selectedLogFolder}/{logFolder}/index.html"; string path = $"{LOGS}/{_selectedLogFolder}/{logFolder}/index.html";
<NavLink class="nav-link" href="@path" target="blank" style="width:5px;"> @logFolder </NavLink> <NavLink class="nav-link" href="@path" target="blank"> @logFolder </NavLink>
} }

View file

@ -20,6 +20,7 @@ main {
::deep .nav-link { ::deep .nav-link {
color: lightskyblue; color: lightskyblue;
width: fit-content;
} }
::deep input { ::deep input {