diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-10-05 10:44:08 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-10-05 10:44:08 +0530 |
commit | afbf9fa4f665404c7128315e2b84f63376f1cdce (patch) | |
tree | ceca312bae5678847ff4396efecd7737b28cfed7 /src/components/navbar.vue | |
parent | 713cdb5d5b5ae5df11bd8dbc1c2892a501fb47bc (diff) |
fixed toggler icon not showing due to CSP violationv0.0.4
Diffstat (limited to 'src/components/navbar.vue')
-rw-r--r-- | src/components/navbar.vue | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/components/navbar.vue b/src/components/navbar.vue index 12616b6..0956d30 100644 --- a/src/components/navbar.vue +++ b/src/components/navbar.vue @@ -26,7 +26,7 @@ watch( aria-expanded="false" aria-label="Toggle navigation" > - <span class="navbar-toggler-icon"></span> + <i class="bi bi-list" id="nav-toggler-icon"></i> </button> <div v-if="requiresAuth" class="collapse navbar-collapse" id="navbarSupportedContent"> @@ -62,3 +62,9 @@ watch( </div> </nav> </template> + +<style> +#nav-toggler-icon { + font-size: 1.5rem; +} +</style> |