mediacube-ui 0.1.269 → 0.1.271
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.271](https://github.com/MediaCubeCo/mcui/compare/v0.1.270...v0.1.271) (2024-05-27)
|
|
6
|
+
|
|
7
|
+
### [0.1.270](https://github.com/MediaCubeCo/mcui/compare/v0.1.269...v0.1.270) (2024-05-18)
|
|
8
|
+
|
|
5
9
|
### [0.1.269](https://github.com/MediaCubeCo/mcui/compare/v0.1.268...v0.1.269) (2024-05-18)
|
|
6
10
|
|
|
7
11
|
### [0.1.268](https://github.com/MediaCubeCo/mcui/compare/v0.1.267...v0.1.268) (2024-05-18)
|
package/package.json
CHANGED
|
@@ -727,12 +727,8 @@ export default {
|
|
|
727
727
|
box-shadow: 0 3px 10px var(--mc-button-background-color);
|
|
728
728
|
}
|
|
729
729
|
&--underline-link {
|
|
730
|
-
#{$block-name} {
|
|
731
|
-
|
|
732
|
-
#{$block-name}__text {
|
|
733
|
-
text-decoration: underline !important;
|
|
734
|
-
}
|
|
735
|
-
}
|
|
730
|
+
#{$block-name}__text {
|
|
731
|
+
text-decoration: underline !important;
|
|
736
732
|
}
|
|
737
733
|
}
|
|
738
734
|
|
package/src/styles/_mixins.scss
CHANGED
|
@@ -382,18 +382,21 @@
|
|
|
382
382
|
&, & * {
|
|
383
383
|
font-size: 40px !important;
|
|
384
384
|
line-height: $line-height-600;
|
|
385
|
+
font-weight: $font-weight-bold;
|
|
385
386
|
}
|
|
386
387
|
}
|
|
387
388
|
h2 {
|
|
388
389
|
&, & * {
|
|
389
390
|
font-size: $font-size-600 !important;
|
|
390
391
|
line-height: $line-height-500;
|
|
392
|
+
font-weight: $font-weight-bold;
|
|
391
393
|
}
|
|
392
394
|
}
|
|
393
395
|
h3, h4, h5, h6 {
|
|
394
396
|
&, & * {
|
|
395
397
|
font-size: $font-size-400 !important;
|
|
396
398
|
line-height: $line-height-400;
|
|
399
|
+
font-weight: $font-weight-bold;
|
|
397
400
|
}
|
|
398
401
|
}
|
|
399
402
|
h1, h2, h3, h4, h5, h6 {
|