Skip to content

Commit

Permalink
feat: added folder icon
Browse files Browse the repository at this point in the history
  • Loading branch information
woutervanranst committed Aug 21, 2024
1 parent 810e64c commit 37040bc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Arius.Core.Models;
using Arius.Core.Models;
using Azure.Storage.Blobs;
using Azure.Storage.Blobs.Models;
using Azure.Storage.Blobs.Specialized;
using System.Collections.Generic;
using System.IO;

namespace Arius.Core.Repositories.BlobRepository;

Expand Down
2 changes: 1 addition & 1 deletion src/Arius.Web/Components/Layout/NavMenu.razor
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<div class="nav-item px-3">
<NavLink class="nav-link" href="/repositories">
<span class="bi TODO" aria-hidden="true"></span> Repositories
<span class="bi bi-folder-fill-nav-menu" aria-hidden="true"></span> Repositories
</NavLink>
</div>
</nav>
Expand Down
4 changes: 4 additions & 0 deletions src/Arius.Web/Components/Layout/NavMenu.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-folder-fill-nav-menu {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M9.828 3h3.982a2 2 0 0 1 1.992 2.181l-.637 7A2 2 0 0 1 13.174 14H2.825a2 2 0 0 1-1.991-1.819l-.637-7a2 2 0 0 1 .342-1.31L.5 3a2 2 0 0 1 2-2h3.672a2 2 0 0 1 1.414.586l.828.828A2 2 0 0 0 9.828 3m-8.322.12q.322-.119.684-.12h5.396l-.707-.707A1 1 0 0 0 6.172 2H2.5a1 1 0 0 0-1 .981z'/%3E%3C/svg%3E");
}

.nav-item {
font-size: 0.9rem;
padding-bottom: 0.5rem;
Expand Down

0 comments on commit 37040bc

Please sign in to comment.