superdesk-ui-framework 3.0.21 → 3.0.23

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.
@@ -324,7 +324,10 @@ $sd-icon-font: (
324
324
  &.color--white {
325
325
  color: hsla(214, 13%, 90, 1) !important;
326
326
  }
327
-
327
+
328
+ &.scale--1\.5x {
329
+ --icon-base-size: 24px
330
+ }
328
331
  &.scale--2x {
329
332
  --icon-base-size: 32px
330
333
  }
@@ -5,7 +5,7 @@ interface IProps {
5
5
  size?: 'small' | 'big'; // defaults to 'small'
6
6
  type?: 'default' | 'primary' | 'success' | 'warning' | 'alert' | 'highlight' | 'light' | 'white';
7
7
  className?: string;
8
- scale?: '2x' | '3x' | '4x';
8
+ scale?: '1.5x' | '2x' | '3x' | '4x';
9
9
  ariaHidden?: boolean;
10
10
  color?: string;
11
11
  }