style: enforce minimum width for non-responsive content

- Added a min-width of 1200px to the .Content--non-responsive class in default-base.css to prevent rewrites of complex page templates for responsive layout.
This commit is contained in:
Zack Spear
2025-06-25 16:42:02 -07:00
parent 7665f65c08
commit 463cff8d63
@@ -1312,6 +1312,11 @@ a.list {
}
}
/* Necessary evil to prevent rewrites of complex page templates for responsive layout - i.e. VMedit.php */
.Content--non-responsive {
min-width: 1200px;
}
.tabs {
display: flex;
align-items: center;