lincd-cli 0.1.21 → 0.1.22

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.
@@ -1,9 +1,9 @@
1
1
  .spinner.active {
2
- border: 4px solid #474545;
3
- border-top: 4px solid lightblue;
2
+ border: 4px solid transparent;
3
+ border-top: 4px solid #474545;
4
4
  border-radius: 50%;
5
- width: 24px;
6
- height: 24px;
5
+ width: 16px;
6
+ height: 16px;
7
7
  animation: spin 1s linear infinite;
8
8
  }
9
9
  @keyframes spin {
@@ -1,10 +1,11 @@
1
1
  import './Spinner.scss';
2
+ import * as style from './Spinner.scss.json';
2
3
  export default function Spinner({active = true}) {
3
4
  return (
4
5
  <div
5
- className={['spinner', active && 'active'].join(' ')}
6
+ className={[style.spinner, active && style.active].join(' ')}
6
7
  role="progressbar"
7
8
  aria-busy={active ? 'true' : 'false'}
8
9
  />
9
10
  );
10
- }
11
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lincd-cli",
3
- "version": "0.1.21",
3
+ "version": "0.1.22",
4
4
  "description": "Command line tools for the lincd.js library",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {