QuickLaunch.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. @import './node_modules/@waca/ca-ui-toolkit/essentials/essentials';
  2. .homeDndPrompt {
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. justify-content: center;
  7. margin-top: 22px;
  8. .dndIconContainer {
  9. padding: 16px;
  10. width: 96px;
  11. height: 96px;
  12. margin-bottom: 22px;
  13. border-radius: 50%;
  14. @include theming(background-color, ui-03);
  15. }
  16. }
  17. .quickLaunchContainer {
  18. bottom: 0px;
  19. position: fixed !important;
  20. width: calc(100% - 215px);
  21. @include theming(color, text-04);
  22. font-size: .875rem;
  23. .uploadBanner {
  24. @include theming(background-color, active-primary);
  25. text-align: center;
  26. padding: 8px;
  27. width: 100%;
  28. min-height: 48px;
  29. display: flex;
  30. flex-shrink: 1;
  31. align-items: center;
  32. justify-content: center;
  33. }
  34. .quickLaunchBanner {
  35. @include theming(background-color, active-tertiary);
  36. min-height: 128px;
  37. display: flex;
  38. flex-shrink: 1;
  39. align-items: center;
  40. justify-content: center;
  41. .quickLaunchContent {
  42. display: flex;
  43. max-width: 1192px;
  44. margin-left: 48px;
  45. margin-right: 48px;
  46. align-items: center;
  47. justify-content: space-around;
  48. .quickLaunchText {
  49. margin-left: auto;
  50. margin-right: auto;
  51. .quickLaunchTitle {
  52. font-size: 1.5rem;
  53. font-weight: 700;
  54. margin-bottom: 4px;
  55. }
  56. }
  57. }
  58. }
  59. }
  60. @media only screen and (max-width: 1280px) {
  61. .quickLaunchContainer {
  62. width: calc(100% - 63px);
  63. }
  64. }