@sorocraft/ui 1.0.103 → 1.0.106

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.
@@ -40,7 +40,7 @@ $color-success: #1bc5bd;
40
40
  $color-success-light: #c9f7f5;
41
41
  $color-success-active: #0bb7af;
42
42
  $color-success-inverse: $color-white;
43
- $color-info: #f8f5ff;
43
+ $color-info: #7239ea;
44
44
  $color-info-inverse: $color-white;
45
45
  $color-info-light: #f8f5ff;
46
46
  $color-info-active: #5014d0;
@@ -173,6 +173,20 @@ $xxl: 1440px;
173
173
  }
174
174
  }
175
175
 
176
+ .action {
177
+ background-color: list.nth($styles, 3);
178
+
179
+ svg {
180
+ stroke: list.nth($styles, 4);
181
+ transition: stroke 0.2s ease-in-out;
182
+
183
+ path {
184
+ stroke: list.nth($styles, 4);
185
+ transition: stroke 0.2s ease-in-out;
186
+ }
187
+ }
188
+ }
189
+
176
190
  &:hover,
177
191
  &.active {
178
192
  background-color: list.nth($styles, 3);
@@ -185,6 +199,18 @@ $xxl: 1440px;
185
199
  stroke: list.nth($styles, 4);
186
200
  }
187
201
  }
202
+
203
+ .action {
204
+ background-color: list.nth($styles, 1);
205
+
206
+ svg {
207
+ stroke: list.nth($styles, 2);
208
+
209
+ path {
210
+ stroke: list.nth($styles, 2);
211
+ }
212
+ }
213
+ }
188
214
  }
189
215
  }
190
216