chore: fixes

This commit is contained in:
MattTheTekie 2026-03-28 17:10:07 -04:00
commit ef529c6ae4

View file

@ -818,22 +818,8 @@ a:hover {
/* default: hide everything */
.left_banner,
.right_banner {
display: none;
}
/* ONLY show on 1920px and above */
@media (min-width: 1920px) {
.left_banner,
.right_banner {
display: block;
}
.left_banner {
position: fixed;
.left_banner {
position:fixed;
top: 250px;
left: 40px;
width: 383px;
@ -844,10 +830,14 @@ a:hover {
background-repeat: no-repeat;
animation: float 6s ease-in-out infinite;
z-index: 94;
}
.right_banner {
position: fixed;
}
.right_banner {
position:fixed;
top: 150px;
right: 40px;
width: 383px;
@ -858,5 +848,18 @@ a:hover {
background-repeat: no-repeat;
animation: float 6s ease-in-out infinite;
z-index: 94;
}
/* =========================
* BELOW 1920 (HIDE)
= *======================== */
@media (max-width: 1870px) {
.left_banner,
.right_banner {
display: none !important;
}
}