File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
1
: root {
2
+ --aspect-ratio : calc (100vw / 100vh );
2
3
--inner-before-after-height : 5px ;
3
4
--inner-before-after-margin : 5px ;
4
5
--inner-padding : 5px 0px ;
Original file line number Diff line number Diff line change 75
75
76
76
.procPageContentView {
77
77
grid-area : pageContent;
78
- overflow : auto;
78
+ overflow-y : auto;
79
+ overflow-x : hidden;
79
80
max-width : var (--procPage-mobile-width );
80
81
}
81
82
82
83
.procPageVerticalLockContentView {
83
84
grid-area : pageContent;
84
- overflow : auto;
85
+ overflow-y : auto;
86
+ overflow-x : hidden;
85
87
/*max-width: var(--procPage-mobile-width);*/
86
88
}
87
89
88
90
.procPageMediaView {
89
91
grid-area : media;
90
92
height : 100% ;
91
- overflow : auto;
93
+ overflow-y : auto;
94
+ overflow-x : hidden;
92
95
/*max-width: var(--procPage-mobile-width);*/
93
96
display : grid;
94
97
}
157
160
"media"
158
161
"pageContent"
159
162
"pageAfter" ;
160
- grid-template-rows : max-content max-content max-content 40% auto max-content;
163
+ grid-template-rows : max-content max-content max-content calc ( 25 % + min ( 40% , 100 vw / 3 )) auto max-content;
161
164
}
162
165
163
166
/* When there is no Media on a "Triple Layout" page */
265
268
.procPageMediaView {
266
269
grid-area : media;
267
270
height : 100% ;
268
- overflow : auto;
271
+ overflow-y : auto;
272
+ overflow-x : hidden;
269
273
/*max-width: var(--procPage-width);*/
270
274
display : grid;
271
275
}
You can’t perform that action at this time.
0 commit comments