help.css 729 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .help-includes {
  2. overflow: hidden !important;
  3. }
  4. .help-list__link {
  5. display: flex;
  6. align-items: center;
  7. height: var(--default-clickable-area);
  8. margin: 0 8px;
  9. background-position: left center;
  10. }
  11. .help-list__text {
  12. margin-left: 20px;
  13. }
  14. .help-iframe {
  15. width: 100%;
  16. height: 100%;
  17. margin: 0;
  18. padding: 0;
  19. border: 0;
  20. overflow: auto;
  21. }
  22. .help-wrapper {
  23. display: flex;
  24. justify-content: center;
  25. align-items: center;
  26. height: 100%;
  27. width: 100%;
  28. }
  29. .help-content__heading {
  30. text-align: center;
  31. padding: 20px;
  32. }
  33. .help-content {
  34. display: block;
  35. padding: 20px;
  36. }
  37. .help-content__body {
  38. display: flex;
  39. justify-content: center;
  40. align-items: center;
  41. flex-wrap: wrap;
  42. }
  43. .help-content__body > .button {
  44. margin: 20px;
  45. }