Skip to content

Commit

Permalink
fix: correct relative path to refer images in css files
Browse files Browse the repository at this point in the history
  • Loading branch information
su-docker committed Aug 8, 2024
1 parent 06502f3 commit 79d74f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions assets/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ button.hero.icon:after {
border-radius: 20px;
margin-top: 180px;
background: #1c3f3a;
background-image: url("images/corner.svg");
background-image: url("../../images/corner.svg");
background-repeat: no-repeat;
background-position: top right;
}
Expand Down Expand Up @@ -265,7 +265,7 @@ button.hero.icon:after {

.testimonials::before {
content: "";
background-image: url("images/ellipsis.png");
background-image: url("../../images/ellipsis.png");
width: 80px;
height: 80px;
position: absolute;
Expand Down Expand Up @@ -532,7 +532,7 @@ textarea {
}

.bfe img {
content: url("images/architecture-mobile.png");
content: url("../../images/architecture-mobile.png");
width: 100%;
box-sizing: border-box;
margin-top: 24px;
Expand Down

0 comments on commit 79d74f7

Please sign in to comment.