@appscode/design-system 1.0.43-alpha.202 → 1.0.43-alpha.203

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.
@@ -513,9 +513,36 @@ li {
513
513
  transform: scale(0.8);
514
514
  }
515
515
  }
516
+ &.is-refresh.spin {
517
+ animation: spin 1s linear infinite;
518
+ }
516
519
  }
517
520
  }
518
521
 
522
+ @-moz-keyframes spin {
523
+ from {
524
+ -moz-transform: rotate(0deg);
525
+ }
526
+ to {
527
+ -moz-transform: rotate(360deg);
528
+ }
529
+ }
530
+ @-webkit-keyframes spin {
531
+ from {
532
+ -webkit-transform: rotate(0deg);
533
+ }
534
+ to {
535
+ -webkit-transform: rotate(360deg);
536
+ }
537
+ }
538
+ @keyframes spin {
539
+ from {
540
+ transform: rotate(0deg);
541
+ }
542
+ to {
543
+ transform: rotate(360deg);
544
+ }
545
+ }
519
546
  // has info button end
520
547
 
521
548
  // dark theme start
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "1.0.43-alpha.202",
3
+ "version": "1.0.43-alpha.203",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {