_empty.scss 994 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .empty {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. justify-content: center;
  6. height: 100%;
  7. padding: 1rem;
  8. text-align: center;
  9. @include media-breakpoint-up(md) {
  10. padding: 3rem;
  11. }
  12. }
  13. .empty-icon {
  14. margin: 0 0 1rem;
  15. width: 3rem;
  16. height: 3rem;
  17. line-height: 1;
  18. color: var(--#{$prefix}secondary);
  19. svg {
  20. width: 100%;
  21. height: 100%;
  22. }
  23. }
  24. .empty-img {
  25. margin: 0 0 2rem;
  26. line-height: 1;
  27. }
  28. .empty-header {
  29. margin: 0 0 1rem;
  30. font-size: 4rem;
  31. font-weight: var(--#{$prefix}font-weight-light);
  32. line-height: 1;
  33. color: var(--#{$prefix}secondary);
  34. }
  35. .empty-title {
  36. font-size: $h2-font-size;
  37. line-height: $h2-line-height;
  38. font-weight: $headings-font-weight;
  39. }
  40. .empty-title,
  41. .empty-subtitle {
  42. margin: 0 0 .5rem;
  43. }
  44. .empty-action {
  45. margin-top: 1.5rem;
  46. }
  47. .empty-bordered {
  48. border: var(--#{$prefix}border-width) var(--#{$prefix}border-style) var(--#{$prefix}border-color);
  49. border-radius: var(--#{$prefix}border-radius);
  50. }