File tree 2 files changed +11
-4
lines changed
2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
1
// NProgress style.
2
2
@import ' nprogress/nprogress.css' ;
3
3
4
- #nprogress .bar {
5
- background-color : #fff ;
4
+ #nprogress {
5
+
6
+ // Background bar
7
+ .bar {
8
+ height : 2px !important ;
9
+ border-top : 4px solid #858Fbb !important ;
10
+
11
+ .peg {
12
+ box-shadow : 0 0 2px #fff , 0 0 5px #fff !important ;
13
+ }
14
+ }
6
15
}
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ export const getPosts = async ( pageNo = 1 ) => {
17
17
return await axios . get ( `${ GET_POSTS_ENDPOINT } ?page_no=${ pageNo } ` )
18
18
. then ( res => {
19
19
if ( 200 === res . data . status ) {
20
- console . log ( 'red' , res ) ;
21
20
return res ;
22
21
} else {
23
22
return {
@@ -44,7 +43,6 @@ export const getPost = async ( postSlug = '' ) => {
44
43
return await axios . get ( `${ GET_POST_ENDPOINT } ?post_slug=${ postSlug } ` )
45
44
. then ( res => {
46
45
if ( 200 === res . data . status ) {
47
- console . log ( 'res' , res ) ;
48
46
return res ;
49
47
} else {
50
48
return {
You can’t perform that action at this time.
0 commit comments