Graphs and tables for your Spotify account.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
311 B

  1. // stylelint-disable selector-no-qualifying-type
  2. .fade {
  3. @include transition($transition-fade);
  4. &:not(.show) {
  5. opacity: 0;
  6. }
  7. }
  8. .collapse {
  9. &:not(.show) {
  10. display: none;
  11. }
  12. }
  13. .collapsing {
  14. position: relative;
  15. height: 0;
  16. overflow: hidden;
  17. @include transition($transition-collapse);
  18. }