page-title.css 650 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/2815083
  5. * @preserve
  6. */
  7. /**
  8. * @file
  9. * Page title.
  10. */
  11. .block-page-title-block {
  12. margin-bottom: 0.75rem;
  13. }
  14. .block-page-title-block:last-child {
  15. margin-bottom: 1.5rem;
  16. }
  17. /**
  18. * There are use cases where page title is not rendered as a block ¯\_(ツ)_/¯.
  19. *
  20. * @see Drupal\system\Controller\BatchController::batchPage()
  21. */
  22. .region-header > .page-title {
  23. margin-top: 1.25rem;
  24. margin-bottom: 1.5rem;
  25. }
  26. .page-title {
  27. display: inline-block;
  28. margin: 0;
  29. font-size: 2.027rem;
  30. -webkit-font-smoothing: antialiased;
  31. }