@microsoft/atlas-css 3.48.0 → 3.49.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/atlas-css",
3
- "version": "3.48.0",
3
+ "version": "3.49.0",
4
4
  "description": "Styles backing the Atlas Design System used by Microsoft's Developer Relations.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -15,3 +15,11 @@
15
15
  overflow-x: hidden !important;
16
16
  }
17
17
  }
18
+
19
+ .scrollbar-gutter-stable {
20
+ scrollbar-gutter: stable !important;
21
+ }
22
+
23
+ .scrollbar-gutter-stable-both-edges {
24
+ scrollbar-gutter: stable both-edges !important;
25
+ }
@@ -72,7 +72,7 @@ $three-quarters-widescreen: math.div($breakpoint-widescreen, 4) * 3;
72
72
  .layout,
73
73
  .layout.layout-single {
74
74
  .layout-body {
75
- grid-template: auto auto auto 1fr auto auto / 1fr;
75
+ grid-template: auto auto auto 1fr auto auto / minmax(0, 1fr);
76
76
  grid-template-areas: 'header' 'hero' 'menu' 'main' 'aside' 'footer';
77
77
  }
78
78
  }
@@ -83,7 +83,7 @@ $three-quarters-widescreen: math.div($breakpoint-widescreen, 4) * 3;
83
83
  grid-template-areas: 'header' 'hero' 'menu' 'main' 'aside' 'footer';
84
84
 
85
85
  @include tablet {
86
- grid-template: auto auto 1fr auto auto / 1fr 2fr;
86
+ grid-template: auto auto 1fr auto auto / minmax(0, 1fr) minmax(0, 2fr);
87
87
  grid-template-areas:
88
88
  'header header'
89
89
  'hero hero'
@@ -93,7 +93,7 @@ $three-quarters-widescreen: math.div($breakpoint-widescreen, 4) * 3;
93
93
  }
94
94
 
95
95
  @include desktop {
96
- grid-template: auto auto 1fr auto / 1fr 2fr 1fr;
96
+ grid-template: auto auto 1fr auto / minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
97
97
  grid-template-areas:
98
98
  'header header header'
99
99
  'hero hero hero'
@@ -118,11 +118,11 @@ $three-quarters-widescreen: math.div($breakpoint-widescreen, 4) * 3;
118
118
  }
119
119
 
120
120
  .layout-body {
121
- grid-template: auto auto auto 1fr auto / 1fr;
121
+ grid-template: auto auto auto 1fr auto / minmax(0, 1fr);
122
122
  grid-template-areas: 'header' 'hero' 'menu' 'main' 'footer';
123
123
 
124
124
  @include tablet {
125
- grid-template: auto auto 1fr auto / 1fr 2fr;
125
+ grid-template: auto auto 1fr auto / minmax(0, 1fr) minmax(0, 2fr);
126
126
  grid-template-areas:
127
127
  'header header'
128
128
  'hero hero'
@@ -131,7 +131,7 @@ $three-quarters-widescreen: math.div($breakpoint-widescreen, 4) * 3;
131
131
  }
132
132
 
133
133
  @include desktop {
134
- grid-template: auto auto 1fr auto / 1fr 3fr;
134
+ grid-template: auto auto 1fr auto / minmax(0, 1fr) minmax(0, 3fr);
135
135
  grid-template-areas:
136
136
  'header header'
137
137
  'hero hero'
@@ -156,11 +156,11 @@ $three-quarters-widescreen: math.div($breakpoint-widescreen, 4) * 3;
156
156
  }
157
157
 
158
158
  .layout-body {
159
- grid-template: auto auto auto 1fr auto / 1fr;
159
+ grid-template: auto auto auto 1fr auto / minmax(0, 1fr);
160
160
  grid-template-areas: 'header' 'hero' 'main' 'aside' 'footer';
161
161
 
162
162
  @include tablet {
163
- grid-template: auto auto 1fr auto / 2fr 1fr;
163
+ grid-template: auto auto 1fr auto / minmax(0, 2fr) minmax(0, 1fr);
164
164
  grid-template-areas:
165
165
  'header header'
166
166
  'hero hero'
@@ -169,7 +169,7 @@ $three-quarters-widescreen: math.div($breakpoint-widescreen, 4) * 3;
169
169
  }
170
170
 
171
171
  @include desktop {
172
- grid-template: auto auto 1fr auto / 3fr 1fr;
172
+ grid-template: auto auto 1fr auto / minmax(0, 3fr) minmax(0, 1fr);
173
173
  grid-template-areas:
174
174
  'header header'
175
175
  'hero hero'