WelcomeLabel.scss 750 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. @import './node_modules/@waca/ca-ui-toolkit/essentials/essentials';
  2. .homeLabelContainer {
  3. display: block;
  4. margin: 48px 0;
  5. padding-bottom: 5px;
  6. .promptLabel {
  7. display: inline-block;
  8. vertical-align: top;
  9. margin-top: 3px;
  10. .primaryWelcomeMsg {
  11. font-size: $heading-size-s;
  12. @include theming(color, text-05);
  13. text-align: left;
  14. font-weight: $fw-bold;
  15. .primaryWelcomeMsg sup {
  16. vertical-align: super;
  17. font-size: $caption-size;
  18. @include theming(color, text-05);
  19. }
  20. .secondaryWelcomeMsg{
  21. font-size: $heading-size-xs;
  22. @include theming(color, text-02);
  23. text-align: left;
  24. }
  25. }
  26. .homeWelcomeLogo {
  27. display: inline-block;
  28. margin-right: 16px;
  29. height: 64px;
  30. width: 64px;
  31. vertical-align: inherit;
  32. }
  33. }