TilesView.scss 1006 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. @import './node_modules/@waca/ca-ui-toolkit/essentials/essentials';
  2. .tilesViewContainer {
  3. width: 100%;
  4. .homeCaptionRow {
  5. display: block;
  6. margin-bottom: 16px;
  7. height: 22px;
  8. .recentCaption {
  9. @include theming(color, text-01);
  10. font-weight: 700;
  11. float: left;
  12. font-size: 1rem;
  13. }
  14. .recentShowMore {
  15. font-size: 0.875rem;
  16. float: right;
  17. a {
  18. @include theming(color, link-01);
  19. }
  20. }
  21. }
  22. .assetTilesContainer {
  23. .tileFlexLayout {
  24. @media only screen and (max-width: 700px) {
  25. justify-content: space-around;
  26. }
  27. }
  28. }
  29. }
  30. .assetTilesNoRecents {
  31. width: 100%;
  32. min-height: 300px;
  33. text-align: center;
  34. @include theming(background, ui-background);
  35. padding-top: 48px;
  36. font-size: 14px;
  37. .noRecentsIcon {
  38. margin-bottom: 24px;
  39. width: 128px;
  40. height: 128px;
  41. }
  42. .noRecentsText {
  43. @include theming(color, text-02);
  44. word-wrap: break-word;
  45. .noRecentsHeading {
  46. font-weight: bold;
  47. font-size: 16px;
  48. }
  49. .noRecentsParagraph {
  50. font-size: 14px;
  51. }
  52. }
  53. }