diff --git a/app/styles/components/help.scss b/app/styles/components/help.scss index 1e6f95f..3f95035 100644 --- a/app/styles/components/help.scss +++ b/app/styles/components/help.scss @@ -9,7 +9,6 @@ font-weight: 900; font-size:1.5em; display:block; - cursor:pointer; } #help-button-desktop:hover { @@ -28,7 +27,7 @@ a #help-button-mobile { } .desktop-img { - background-image: url(desk.jpg); + background-image: url(/public/assets/images/desk.jpg); width:100%; height:851px; max-height:100%; @@ -59,7 +58,7 @@ a #help-button-desktop { } .mobile-img { - background-image: url(mobile.png); + background-image: url(/public/assets/images/mobile.jpg); width:100%; height:1348px; background-repeat: no-repeat; diff --git a/public/assets/images/desk.jpg b/public/assets/images/desk.jpg new file mode 100644 index 0000000..4f87728 Binary files /dev/null and b/public/assets/images/desk.jpg differ diff --git a/public/assets/images/mobile.jpg b/public/assets/images/mobile.jpg new file mode 100644 index 0000000..526b589 Binary files /dev/null and b/public/assets/images/mobile.jpg differ