Skip to content

Commit

Permalink
chore: improve home page assets
Browse files Browse the repository at this point in the history
  • Loading branch information
psanders committed Oct 29, 2023
1 parent d08339b commit 2343c38
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 1 deletion.
16 changes: 16 additions & 0 deletions site/assets/css/media.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
.mobile-image {
display: block;
}

.desktop-image {
margin-left: 60px;
display: none;
}

@media (min-width: 1025px) {
.header-wrap .menu-btn {
display: none;
Expand All @@ -10,6 +19,13 @@
.cta-sec-wrap .img-wrap {
display: none;
}

.mobile-image {
display: none;
}
.desktop-image {
display: block;
}
}

@media (max-width: 1440px) {
Expand Down
Binary file added site/assets/images/banner-img-desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified site/assets/images/banner-img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified site/assets/images/integration-img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ <h1 class="h1 title">Better customer experience<span class="accent-color">...</s
<div class="right">
<div class="content-box">
<div class="img-wrap">
<img src="assets/images/banner-img.png" alt="banner-img" width="670" height="370">
<img src="assets/images/banner-img.png" alt="banner-img" class="mobile-image">
<img src="assets/images/banner-img-desktop.png" alt="banner-img-desktop" class="desktop-image">
</div>
</div>
</div>
Expand Down

0 comments on commit 2343c38

Please sign in to comment.