top of page
bottom of page
/* Base style (desktop/laptop) */
.gamma-wrapper {
position: relative;
display: inline-block;
width: 100%;
}
.gamma-cover {
position: absolute;
bottom: 0;
right: 0;
width: 120px; /* adjust to cover Gamma logo */
height: 40px; /* adjust */
background: #fff; /* or match your site background */
z-index: 9999;
}
/* Mobile override (screens 767px wide and smaller) */
@media screen and (max-width: 767px) {
.gamma-cover {
width: 90px; /* tweak to fit mobile logo size */
height: 30px;
bottom: 0;
right: 0;
}
}