Skip to content

Commit 5a40331

Browse files
committed
Update comment'
1 parent 6025cab commit 5a40331

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed
+11-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
// NProgress style.
22
@import 'nprogress/nprogress.css';
33

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+
}
615
}

src/utils/blog.js

-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ export const getPosts = async ( pageNo = 1 ) => {
1717
return await axios.get( `${ GET_POSTS_ENDPOINT }?page_no=${ pageNo }` )
1818
.then( res => {
1919
if ( 200 === res.data.status ) {
20-
console.log( 'red', res );
2120
return res;
2221
} else {
2322
return {
@@ -44,7 +43,6 @@ export const getPost = async ( postSlug = '' ) => {
4443
return await axios.get( `${ GET_POST_ENDPOINT }?post_slug=${ postSlug }` )
4544
.then( res => {
4645
if ( 200 === res.data.status ) {
47-
console.log( 'res', res );
4846
return res;
4947
} else {
5048
return {

0 commit comments

Comments
 (0)