Skip to content
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.

Commit

Permalink
🎨 Apply color scheme to nprogressbar
Browse files Browse the repository at this point in the history
  • Loading branch information
acollierr17 committed Feb 23, 2021
1 parent 1a8fb8a commit cbf6e0a
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
1 change: 0 additions & 1 deletion components/LoadingPage.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<template>
<div id="loader-wrapper" :style="color">
<!-- <h1>HELLO WORLDDDDDD</h1>-->
<div class="loader-main" :style="color">
<div v-for="item in 4" :key="`out${item}`" :style="color">
</div>
Expand Down
13 changes: 13 additions & 0 deletions styles/themes/purple.styl
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,19 @@
.sidebar::-webkit-scrollbar-thumb {
background-color: $purpleAccentColor;
}

#nprogress .bar {
background: $purpleAccentColor
}

#nprogress .peg {
box-shadow: 0 0 10px $purpleAccentColor, 0 0 5px $purpleAccentColor;
}

#nprogress .spinner-icon {
border-top-color: $purpleAccentColor;
border-left-color: $purpleAccentColor;
}
}

.reco-theme-purple::-webkit-scrollbar-thumb:vertical {
Expand Down
13 changes: 13 additions & 0 deletions styles/themes/red.styl
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,19 @@
.sidebar::-webkit-scrollbar-thumb {
background-color: $redAccentColor;
}

#nprogress .bar {
background: $redAccentColor
}

#nprogress .peg {
box-shadow: 0 0 10px $redAccentColor, 0 0 5px $redAccentColor;
}

#nprogress .spinner-icon {
border-top-color: $redAccentColor;
border-left-color: $redAccentColor;
}
}

.reco-theme-red::-webkit-scrollbar-thumb:vertical {
Expand Down

0 comments on commit cbf6e0a

Please sign in to comment.