page-title.pcss.css 596 B

12345678910111213141516171819202122232425262728293031
  1. /**
  2. * @file
  3. * Page title.
  4. */
  5. @import "../base/variables.pcss.css";
  6. .block-page-title-block {
  7. margin-bottom: var(--space-s);
  8. }
  9. .block-page-title-block:last-child {
  10. margin-bottom: var(--space-l);
  11. }
  12. /**
  13. * There are use cases where page title is not rendered as a block ¯\_(ツ)_/¯.
  14. *
  15. * @see Drupal\system\Controller\BatchController::batchPage()
  16. */
  17. .region-header > .page-title {
  18. margin-top: var(--breadcrumb-height);
  19. margin-bottom: var(--space-l);
  20. }
  21. .page-title {
  22. display: inline-block;
  23. margin: 0;
  24. font-size: var(--font-size-h1);
  25. -webkit-font-smoothing: antialiased;
  26. }