Skip to content

Commit

Permalink
fix(style): fixed a warning when importing images in scss files
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementDreptin committed Jun 8, 2023
1 parent 36ac02c commit d1b79a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,13 @@
}

.navigation-main>.nav-button {
background: transparent url('../../public/images/menu_burger/cross.svg') no-repeat center center;
background: transparent url('/images/menu_burger/cross.svg') no-repeat center center;
width: 34px;
height: 34px
}

.navigation-main.is-closed>.nav-button {
background: transparent url('../../public/images/menu_burger/burger.svg') no-repeat center center;
background: transparent url('/images/menu_burger/burger.svg') no-repeat center center;
width: 34px;
height: 34px
}
Expand Down

0 comments on commit d1b79a6

Please sign in to comment.