fix: use standard max-width media query syntax in admin-styles.css (issue #43) (#68)

Replace invalid CSS media-feature range notation with universally-supported
traditional syntax for better browser compatibility.

- admin/css/admin-styles.css:127: (width <= 782px) → (max-width: 782px)
This commit is contained in:
2026-03-17 01:17:05 +00:00
committed by GitHub
parent a1e5b166ff
commit 9cddf28c09

View File

@@ -124,7 +124,7 @@
}
/* Responsive Styles */
@media screen and (width <= 782px) {
@media screen and (max-width: 782px) {
.wpst-form-table th {
width: 100%;
display: block;