errors.less 669 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .detailed-error {
  2. display: flex;
  3. justify-content: center;
  4. padding: 18px;
  5. &.group-event-details-error {
  6. padding-top: 48px;
  7. }
  8. }
  9. .detailed-error-icon {
  10. color: @red;
  11. font-size: 2.4em;
  12. padding: 6px 18px 0 18px;
  13. opacity: 0.3;
  14. }
  15. .detailed-error-content {
  16. margin-top: 8px;
  17. }
  18. .detailed-error-content-footer {
  19. margin-top: 18px;
  20. border-top: 1px solid @trim;
  21. padding-top: 18px;
  22. display: flex;
  23. justify-content: space-between;
  24. align-items: center;
  25. }
  26. .detailed-error-support-links {
  27. font-size: 0.9em;
  28. a {
  29. margin: 12px;
  30. }
  31. }
  32. .detailed-error-list {
  33. li {
  34. margin-bottom: 6px;
  35. &:last-child {
  36. margin-bottom: 0;
  37. }
  38. }
  39. }