@gitlab/ui 41.8.0 → 41.9.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": "41.8.0",
3
+ "version": "41.9.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -3005,6 +3005,18 @@
3005
3005
  display: grid !important;
3006
3006
  }
3007
3007
 
3008
+ .gl-sm-display-table-cell {
3009
+ @include gl-media-breakpoint-up(sm) {
3010
+ display: table-cell;
3011
+ }
3012
+ }
3013
+
3014
+ .gl-sm-display-table-cell\! {
3015
+ @include gl-media-breakpoint-up(sm) {
3016
+ display: table-cell !important;
3017
+ }
3018
+ }
3019
+
3008
3020
  .gl-md-display-table-cell {
3009
3021
  @include gl-media-breakpoint-up(md) {
3010
3022
  display: table-cell;
@@ -187,6 +187,12 @@
187
187
  display: grid;
188
188
  }
189
189
 
190
+ @mixin gl-sm-display-table-cell {
191
+ @include gl-media-breakpoint-up(sm) {
192
+ @include gl-display-table-cell;
193
+ }
194
+ }
195
+
190
196
  @mixin gl-md-display-table-cell {
191
197
  @include gl-media-breakpoint-up(md) {
192
198
  @include gl-display-table-cell;