Skip to content

Commit

Permalink
Revert "fix: logo icon not showing"
Browse files Browse the repository at this point in the history
This reverts commit 7df68d0.
  • Loading branch information
ahmedrangel committed Nov 4, 2024
1 parent 7df68d0 commit e202018
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/components/DashboardNavbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<Icon name="solar:hamburger-menu-linear" size="2rem" />
</button>
<NuxtLink class="navbar-brand d-flex" to="/admin">
<LogoIcon width="2rem" height="2rem" />
<Icon name="LogoIcon" size="2rem" />
</NuxtLink>
<div id="offcanvasNavbar" class="offcanvas offcanvas-start text-white bg-dark" tabindex="-1" aria-labelledby="offcanvasNavbarLabel">
<div class="offcanvas-header">
<LogoIcon width="2rem" height="2rem" />
<Icon name="LogoIcon" size="2rem" />
<h5 id="offcanvasNavbarLabel" class="offcanvas-title">{{ SITE.name.web }}</h5>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="offcanvas" aria-label="Close" />
</div>
Expand Down
4 changes: 2 additions & 2 deletions app/components/NavBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<nav class="navbar navbar-dark navbar-expand-md bg-dark sticky-top shadow">
<div class="container">
<NuxtLink class="navbar-brand d-flex" :to="SCHEMA_pages.inicio.to" :aria-label="t('inicio')">
<LogoIcon width="2rem" height="2rem" />
<Icon name="LogoIcon" size="2rem" />
</NuxtLink>
<button class="navbar-toggler" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasNavbar" aria-controls="offcanvasNavbar" aria-label="Toggle navigation">
<span class="navbar-toggler-icon" />
</button>
<div id="offcanvasNavbar" class="offcanvas offcanvas-end text-white bg-dark" tabindex="-1" aria-labelledby="offcanvasNavbarLabel">
<div class="offcanvas-header">
<LogoIcon width="2rem" height="2rem" />
<Icon name="LogoIcon" size="2rem" />
<h5 id="offcanvasNavbarLabel" class="offcanvas-title">{{ SITE.name.web }}</h5>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="offcanvas" aria-label="Close" />
</div>
Expand Down

0 comments on commit e202018

Please sign in to comment.