feat: Add a breadcrumb

This commit is contained in:
kbe
2025-08-19 09:54:49 +02:00
parent 90340d03aa
commit 686ece4479
55 changed files with 24172 additions and 2 deletions

View File

@@ -0,0 +1,34 @@
//
// Page Scroll Progress //
//
.page-progress-container {
position: fixed;
bottom: 0;
left: 0;
z-index: 999;
width: 100%;
height: 4px;
}
.page-progress-bar {
height: 4px;
width: 0%;
background-image: $gradient-1;
&.page-progress-gradient-2 {
background-image: $gradient-2;
}
&.page-progress-gradient-3 {
background-image: $gradient-3;
}
&.page-progress-gradient-4 {
background-image: $gradient-4;
}
&.page-progress-gradient-5 {
background-image: $gradient-5;
}
&.page-progress-gradient-6 {
background-image: $gradient-6;
}
&.page-progress-gradient-7 {
background-image: $gradient-7;
}
}