﻿/* Default: Show desktop component and hide mobile component */
.desktop-view {
    display: block;
}

.mobile-view {
    display: none;
}

/* When the screen width is 750px or less */
@media (max-width: 750px) {
    .desktop-view {
        display: none; /* Hide desktop component */
    }

    .mobile-view {
        display: block; /* Show mobile component */
    }
}
