test Drupal site working on Koality Theme Builder
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.

42 lines
860 B

  1. .lg-desktop-only {
  2. @include breakpoint($jumbo-down) {
  3. display: none !important; // sass-lint:disable-line no-important
  4. }
  5. }
  6. .desktop-only {
  7. @include breakpoint($lg-down) {
  8. display: none !important; // sass-lint:disable-line no-important
  9. }
  10. @include breakpoint($jumbo) {
  11. display: none !important; // sass-lint:disable-line no-important
  12. }
  13. }
  14. .tablet-only {
  15. @include breakpoint($sm-only) {
  16. display: none !important; // sass-lint:disable-line no-important
  17. }
  18. @include breakpoint($above-lg) {
  19. display: none !important; // sass-lint:disable-line no-important
  20. }
  21. }
  22. .mobile-only {
  23. @include breakpoint($md) {
  24. display: none !important; // sass-lint:disable-line no-important
  25. }
  26. }
  27. .authenticated-user {
  28. .show-for-anonymous {
  29. display: none;
  30. }
  31. }
  32. .anonymous-user {
  33. .show-for-authenticated {
  34. display: none;
  35. }
  36. }