@gitlab/ui 36.4.0 → 36.5.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": "@gitlab/ui",
3
- "version": "36.4.0",
3
+ "version": "36.5.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -3295,6 +3295,14 @@
3295
3295
  grid-column-start: 1 !important
3296
3296
  }
3297
3297
 
3298
+ .gl-grid-template-columns-2 {
3299
+ grid-template-columns: 1fr 1fr
3300
+ }
3301
+
3302
+ .gl-grid-template-columns-2\! {
3303
+ grid-template-columns: 1fr 1fr !important
3304
+ }
3305
+
3298
3306
  .gl-list-style-none {
3299
3307
  list-style-type: none
3300
3308
  }
@@ -10,3 +10,7 @@
10
10
  @mixin gl-grid-col-start-1 {
11
11
  grid-column-start: 1;
12
12
  }
13
+
14
+ @mixin gl-grid-template-columns-2 {
15
+ grid-template-columns: 1fr 1fr;
16
+ }