minor style fix
tronnet/workflows: Code Style -- Web Components / style-web (push) Successful in 14s

This commit is contained in:
alu
2026-08-11 22:59:46 +00:00
parent 492ae56d48
commit e2039a15b1
3 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -191,18 +191,18 @@ hr {
}
/* add hide large class similar to w3-hide-medium and w3-hide-small */
@media screen and (width >=993px) {
@media screen and (width >= 993px) {
.hide-large {display: none !important;}
}
/* fixes edge case in w3-hide-medium where width between 992 and 993 */
@media screen and (width <=993px) and (width >=601px){
@media screen and (width <= 993px) and (width >= 601px){
.hide-large {display: none !important;}
.hide-medium {display:none !important}
}
/* fixes edge case in w3-hide-small when width between 600 and 601 */
@media screen and (width <=601px) {
@media screen and (width <= 601px) and (width >= 440px) {
.hide-large {display: none !important;}
.hide-medium {display:none !important}
.hide-small {display:none !important}