Images disappear after being redirected from FB login / registration in Chrome on Android

I have a mobile version of a website (React-Redux) and the ability to login / register with Facebook on it. When I was redirected from FB after successful login / registration, some images disappeared, but I can still see these items, their image urls, etc. This issue only occurs in Chrome on Android devices (real and virtual). I tried to debug this issue with the remote devices provided by Chrome dev tools on the desktop version of the browser, but found no explanation for the problem.

For example, this is a button with a background image: HTML:

<div class="mobile-col-4">
   <button className="burger-btn" type="button"></button>
</div>

      

CSS:

.burger-btn {
    background: url("/content/img/main_menu.svg") center no-repeat;
    border: 1px solid transparent;
    padding: 0;
    height: 70px;
    width: 70px;
}

      

+3


source to share





All Articles