mediacube-ui 0.1.102 → 0.1.103

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,8 @@
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.103](https://github.com/MediaCubeCo/mcui/compare/v0.1.102...v0.1.103) (2023-08-07)
6
+
5
7
  ### [0.1.102](https://github.com/MediaCubeCo/mcui/compare/v0.1.101...v0.1.102) (2023-08-07)
6
8
 
7
9
  ### [0.1.101](https://github.com/MediaCubeCo/mcui/compare/v0.1.100...v0.1.101) (2023-08-07)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mediacube-ui",
3
- "version": "0.1.102",
3
+ "version": "0.1.103",
4
4
  "description": "Design system for Mediacube services",
5
5
  "author": "Mediacube",
6
6
  "private": false,
@@ -295,14 +295,14 @@
295
295
  }
296
296
  }
297
297
 
298
- @mixin editor-default-styles() {
298
+ @mixin editor-default-styles($main-font-size: $font-size-300, $main-line-height: $line-height-300) {
299
299
  p,
300
300
  strong,
301
301
  em,
302
302
  u,
303
303
  span {
304
- font-size: $font-size-300;
305
- line-height: $line-height-300;
304
+ font-size: $main-font-size;
305
+ line-height: $main-line-height;
306
306
  margin: 0;
307
307
  &:empty {
308
308
  display: none;
@@ -315,8 +315,8 @@
315
315
  padding-inline-start: $space-250;
316
316
 
317
317
  li {
318
- font-size: $font-size-300;
319
- line-height: $line-height-300;
318
+ font-size: $main-font-size;
319
+ line-height: $main-line-height;
320
320
  }
321
321
  }
322
322
  a {