@gitlab/ui 41.2.0 → 41.3.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
package/src/scss/utilities.scss
CHANGED
|
@@ -2997,6 +2997,18 @@
|
|
|
2997
2997
|
display: grid !important;
|
|
2998
2998
|
}
|
|
2999
2999
|
|
|
3000
|
+
.gl-md-display-table-cell {
|
|
3001
|
+
@include gl-media-breakpoint-up(md) {
|
|
3002
|
+
display: table-cell;
|
|
3003
|
+
}
|
|
3004
|
+
}
|
|
3005
|
+
|
|
3006
|
+
.gl-md-display-table-cell\! {
|
|
3007
|
+
@include gl-media-breakpoint-up(md) {
|
|
3008
|
+
display: table-cell !important;
|
|
3009
|
+
}
|
|
3010
|
+
}
|
|
3011
|
+
|
|
3000
3012
|
.gl-lg-display-table-cell {
|
|
3001
3013
|
@include gl-media-breakpoint-up(lg) {
|
|
3002
3014
|
display: table-cell;
|
|
@@ -187,6 +187,12 @@
|
|
|
187
187
|
display: grid;
|
|
188
188
|
}
|
|
189
189
|
|
|
190
|
+
@mixin gl-md-display-table-cell {
|
|
191
|
+
@include gl-media-breakpoint-up(md) {
|
|
192
|
+
@include gl-display-table-cell;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
190
196
|
@mixin gl-lg-display-table-cell {
|
|
191
197
|
@include gl-media-breakpoint-up(lg) {
|
|
192
198
|
@include gl-display-table-cell;
|