fix chrome flicker for smaller screen sizes

This commit is contained in:
2025-10-10 22:14:57 +00:00
parent 75e098b7b4
commit 4e2b6278d8

View File

@@ -33,6 +33,24 @@
.nowrap { /* needed for some reason to avoid a flickering issue on chrome ONLY */
flex-wrap: nowrap;
}
@media screen and (width >=993px) {
.hide-large {display: none !important;}
}
@media screen and (width <=993px) and (width >=601px){
.hide-large {display: none !important;}
.hide-medium {display:none !important}
}
@media screen and (width <=601px) {
.hide-large {display: none !important;}
.hide-medium {display:none !important}
.hide-small {display:none !important}
}
@media screen and (width <= 440px) {
.hide-large {display: none !important;}
.hide-medium {display:none !important}
.hide-small {display:none !important}
.hide-tiny { display: none !important;}
}
</style>
<p>{{.VMID}}</p>
<p id="instance-name">{{.Name}}</p>