Drupal 8 Site using Vue
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.

41 lines
825 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. display: none !important; // sass-lint:disable-line no-important
  16. @include breakpoint($tablet-only) {
  17. display: block !important; // sass-lint:disable-line no-important
  18. }
  19. }
  20. .mobile-only {
  21. @include breakpoint($md) {
  22. display: none !important; // sass-lint:disable-line no-important
  23. }
  24. }
  25. .authenticated-user {
  26. .show-for-anonymous {
  27. display: none;
  28. }
  29. }
  30. .anonymous-user {
  31. .show-for-authenticated {
  32. display: none;
  33. }
  34. }