Drops some elements when the screen is less than 480px

PHOTO EMBED

Fri Jan 01 2021 08:29:00 GMT+0000 (Coordinated Universal Time)

Saved by @eneki #php

// There are 5 divs of class panel
@media(max-width: 480px) {
    .panel:nth-of-type(4),
    .panel:nth-of-type(5) {
        display: none;
    }
}
content_copyCOPY