stream-chat-angular 4.13.0 → 4.14.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.
@@ -35,7 +35,7 @@
35
35
 
36
36
  &--content {
37
37
  padding: var(--xs-p) var(--sm-p);
38
- margin: calc(var(--xs-m) * -1);
38
+ margin: calc(-1 * var(--xs-m));
39
39
  display: flex;
40
40
  flex-direction: row;
41
41
  align-items: center;
@@ -65,7 +65,7 @@
65
65
 
66
66
  &-right {
67
67
  display: flex;
68
- margin: 0 calc(var(--xxs-m) * -1);
68
+ margin: 0 calc(-1 * var(--xxs-m));
69
69
 
70
70
  &-button-wrapper {
71
71
  position: relative;
@@ -207,7 +207,7 @@
207
207
  padding: 0 var(--md-p);
208
208
  display: flex;
209
209
  align-items: center;
210
- margin: 0 calc(var(--xs-m) * -1);
210
+ margin: 0 calc(-1 * var(--xs-m));
211
211
 
212
212
  &--entity {
213
213
  min-width: 24px;
@@ -11,7 +11,7 @@
11
11
  display: flex;
12
12
 
13
13
  .str-chat__avatar {
14
- margin-right: calc(var(--xs-m) * -1);
14
+ margin-right: calc(-1 * var(--xs-m));
15
15
 
16
16
  &:last-of-type {
17
17
  margin-right: var(--xs-m);
@@ -127,7 +127,7 @@ $border-radius: 16px;
127
127
  --xxl-m: calc(var(--spacing-unit) * 8); // 64px
128
128
 
129
129
  /* miscellaneous */
130
- --assetsPath: $assetsPath;
130
+ --assetsPath: '#{$assetsPath}';
131
131
 
132
132
  /* accent colors */
133
133
  --accent_blue: #005fff;