chore: fixes

This commit is contained in:
MattTheTekie 2026-03-28 17:09:36 -04:00
commit 6f21ee7865

View file

@ -818,48 +818,45 @@ a:hover {
.left_banner {
position:fixed;
top: 250px;
left: 40px;
width: 383px;
height: 626px;
background-image: url("https://www.veltron.net/images/dragon.png");
background-size: contain;
background-position: center;
background-repeat: no-repeat;
animation: float 6s ease-in-out infinite;
z-index: 94;
}
/* default: hide everything */
.left_banner,
.right_banner {
position:fixed;
top: 150px;
right: 40px;
width: 383px;
height: 626px;
background-image: url("https://www.veltron.net/images/digimon.png");
background-size: contain;
background-position: center;
background-repeat: no-repeat;
animation: float 6s ease-in-out infinite;
z-index: 94;
display: none;
}
/* =========================
* BELOW 1920 (HIDE)
= *======================== */
@media (max-width: 1920px) {
/* ONLY show on 1920px and above */
@media (min-width: 1920px) {
.left_banner,
.right_banner {
display: none !important;
display: block;
}
.left_banner {
position: fixed;
top: 250px;
left: 40px;
width: 383px;
height: 626px;
background-image: url("https://www.veltron.net/images/dragon.png");
background-size: contain;
background-position: center;
background-repeat: no-repeat;
animation: float 6s ease-in-out infinite;
z-index: 94;
}
.right_banner {
position: fixed;
top: 150px;
right: 40px;
width: 383px;
height: 626px;
background-image: url("https://www.veltron.net/images/digimon.png");
background-size: contain;
background-position: center;
background-repeat: no-repeat;
animation: float 6s ease-in-out infinite;
z-index: 94;
}
}