lusxvr commited on
Commit
26887ee
·
1 Parent(s): c918a0d
Files changed (1) hide show
  1. app/src/styles/_layout.css +2 -2
app/src/styles/_layout.css CHANGED
@@ -69,8 +69,8 @@
69
  }
70
 
71
  .wide {
72
- /* Target up to ~1400px while staying within viewport minus page gutters */
73
- width: min(1400px, 100vw - 32px);
74
  margin-left: 50%;
75
  transform: translateX(-50%);
76
  }
 
69
  }
70
 
71
  .wide {
72
+ /* Target up to ~1400px while staying within viewport minus consistent padding */
73
+ width: min(1400px, calc(100vw - 2 * var(--content-padding-x)));
74
  margin-left: 50%;
75
  transform: translateX(-50%);
76
  }