lusxvr commited on
Commit
f39c1db
·
1 Parent(s): fc222e4
Files changed (1) hide show
  1. app/src/styles/_layout.css +7 -3
app/src/styles/_layout.css CHANGED
@@ -69,9 +69,13 @@
69
  }
70
 
71
  .wide {
72
- /* Target up to ~1100px while staying within viewport minus page gutters */
73
- width: min(1100px, 100vw - 32px);
74
- margin-left: calc(50% + var(--content-padding-x) * 2);
 
 
 
 
75
  transform: translateX(-50%);
76
  }
77
 
 
69
  }
70
 
71
  .wide {
72
+ /* Target up to ~1100px while maintaining consistent margins */
73
+ width: min(1100px, calc(100vw - 2 * var(--content-padding-x)));
74
+ margin-left: auto;
75
+ margin-right: auto;
76
+ /* Center relative to the main column */
77
+ position: relative;
78
+ left: 50%;
79
  transform: translateX(-50%);
80
  }
81