mediacube-ui-v2 0.0.140 → 0.0.142
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/dist/assets/styles/mixins.scss +4 -3
- package/dist/assets/styles/tooltip.scss +1 -1
- package/dist/mediacube-ui-v2.js +5994 -5929
- package/dist/mediacube-ui-v2.umd.cjs +3 -3
- package/dist/style.css +1 -1
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/components/patterns/McFilter/McFilter.vue.d.ts +28 -1
- package/dist/types/components/patterns/McFilter/McFilterPresets/McFilterPresets.vue.d.ts +28 -0
- package/dist/types/components/templates/McTable/McTableCard/McTableCard.vue.d.ts +3 -1
- package/package.json +1 -1
|
@@ -428,9 +428,10 @@
|
|
|
428
428
|
}
|
|
429
429
|
img {
|
|
430
430
|
max-width: 100%;
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
431
|
+
width: 100%;
|
|
432
|
+
max-height: 500px;
|
|
433
|
+
object-fit: cover;
|
|
434
|
+
margin: $space-200 0;
|
|
434
435
|
}
|
|
435
436
|
blockquote {
|
|
436
437
|
border-left: $space-50 solid $color-purple !important;
|
|
@@ -28,7 +28,6 @@
|
|
|
28
28
|
white-space: normal;
|
|
29
29
|
word-break: break-word;
|
|
30
30
|
width: max-content;
|
|
31
|
-
transition: all 0.3s ease;
|
|
32
31
|
& > * {
|
|
33
32
|
display: inline-block;
|
|
34
33
|
}
|
|
@@ -41,6 +40,7 @@
|
|
|
41
40
|
&:hover:before,
|
|
42
41
|
&:hover:after {
|
|
43
42
|
display: block;
|
|
43
|
+
transition: all 0.3s ease;
|
|
44
44
|
}
|
|
45
45
|
&[tooltip-size="xs"] {
|
|
46
46
|
max-width: 180px;
|