Make the navbar sticky

This commit is contained in:
Leonard Smith 2020-10-14 12:15:15 -05:00
parent ff522e2ffd
commit 4a47d04ef2
2 changed files with 11 additions and 1 deletions

View File

@ -1,4 +1,4 @@
<nav class="scripture-menu">
<nav class="scripture-menu navbar navbar-dark sticky-top">
<div class="container">
<Scrollmenu @visible="true">
{{#each this.books as |book|}}

View File

@ -0,0 +1,10 @@
Options FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>