We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a310db1 commit d90492dCopy full SHA for d90492d
instance/hostel.db
0 Bytes
static/extracode/extra.html
@@ -233,3 +233,6 @@ <h3 class="text-center text-success">Remaining Balance: Rs {{ 345000 - total }}<
233
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
234
235
{% endblock %}
236
+
237
238
static/navbar.js
@@ -0,0 +1,10 @@
1
+document.addEventListener('DOMContentLoaded', () => {
2
+ const navbar = document.querySelector('.navbar');
3
+ window.addEventListener('scroll', () => {
4
+ if (window.scrollY > 50) {
5
+ navbar.classList.add('navbar-shrink');
6
+ } else {
7
+ navbar.classList.remove('navbar-shrink');
8
+ }
9
+ });
10
+});
0 commit comments