Skip to content

Commit

Permalink
Update bundles to new navbar format
Browse files Browse the repository at this point in the history
  • Loading branch information
Iceinfly committed Oct 3, 2024
1 parent 83e42e9 commit bd0fbe4
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions src/GRA.Web/Areas/MissionControl/Views/Avatars/Bundles.cshtml
Original file line number Diff line number Diff line change
@@ -1,10 +1,23 @@
@model GRA.Controllers.ViewModel.MissionControl.Avatar.BundlesListViewModel

<div class="row">
<div class="col-12">
<ul class="nav nav-pills" style="padding: 10px 0;">
<li ActiveBy routeKey="Unlockable" value=",True"><a asp-action="Bundles">Unlockable</a></li>
<li ActiveBy routeKey="Unlockable" value="False"><a asp-action="Bundles" asp-route-Unlockable="False">Default</a></li>
<div class="row my-4">
<div class="col-12 mb-2">
<ul class="nav nav-pills flex-column flex-sm-row">
<li class="nav-item">
<a ActiveBy routeKey="Unlockable"
value=",True"
asp-action="Bundles"
class="nav-link">
Unlockable</a>
</li>
<li class="nav-item">
<a ActiveBy routeKey="Unlockable"
value="False"
asp-action="Bundles"
asp-route-Unlockable="False"
class="nav-link">
Default</a>
</li>
</ul>
</div>
</div>
Expand Down

0 comments on commit bd0fbe4

Please sign in to comment.