Browse Source

Merge pull request #66 from krzysiekpiasecki/issue-65

Display none when spinner inactive
pull/87/head
Aigars Silkalns 8 years ago
committed by GitHub
parent
commit
0cafd8e9da
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/assets/styles/spec/components/loader.scss

+ 2
- 2
src/assets/styles/spec/components/loader.scss View File

@ -1,12 +1,12 @@
#loader {
transition: all 0.3s ease-in-out;
opacity: 1;
visibility: visible;
display: default;
}
#loader.fadeOut {
opacity: 0;
visibility: hidden;
display: none;
}


Loading…
Cancel
Save