feat(Navbar): apply sticky style to the main navbar

This commit is contained in:
Alexander Navarro 2024-03-14 14:43:46 -03:00
parent 544815e4d2
commit 9f15e40d6e
5 changed files with 32 additions and 10 deletions

View file

@ -1,6 +1,20 @@
@use './variables' as *;
@use './mixins';
.position-fixed {
position: fixed;
left: 0;
top: 0;
z-index: 2;
}
.position-sticky {
position: sticky;
left: 0;
top: 0;
z-index: 2;
}
.d-none {
display: none;
}
@ -285,6 +299,10 @@
box-shadow: none;
}
.shadow-1 {
box-shadow: 10px 10px 5px 0px var(--prj-shadow);
}
.border-radius {
border-radius: var(--prj-border-radius);
}