@gitlab/ui 77.3.0 → 77.4.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": "77.3.0",
3
+ "version": "77.4.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -3915,6 +3915,18 @@ $gl-animate-skeleton-loader-max-width: 64 * $grid-size;
3915
3915
  }
3916
3916
  }
3917
3917
 
3918
+ .gl-md-justify-content-center {
3919
+ @include gl-media-breakpoint-up(md) {
3920
+ justify-content: center;
3921
+ }
3922
+ }
3923
+
3924
+ .gl-md-justify-content-center\! {
3925
+ @include gl-media-breakpoint-up(md) {
3926
+ justify-content: center !important;
3927
+ }
3928
+ }
3929
+
3918
3930
  .gl-md-justify-content-end {
3919
3931
  @include gl-media-breakpoint-up(md) {
3920
3932
  justify-content: flex-end;
@@ -271,6 +271,12 @@
271
271
  }
272
272
  }
273
273
 
274
+ @mixin gl-md-justify-content-center {
275
+ @include gl-media-breakpoint-up(md) {
276
+ @include gl-justify-content-center;
277
+ }
278
+ }
279
+
274
280
  @mixin gl-md-justify-content-end {
275
281
  @include gl-media-breakpoint-up(md) {
276
282
  @include gl-justify-content-end;