diff --git a/modules/core/ui/theme/css/help.css b/modules/core/ui/theme/css/help.css index a62892b02..8bf645e16 100644 --- a/modules/core/ui/theme/css/help.css +++ b/modules/core/ui/theme/css/help.css @@ -1,3 +1,3 @@ -.help .block-help-block p { - margin-bottom: 1em; +.help .block-help-block p:not(:last-child) { + margin-bottom: var(--gin-spacing-xs); } diff --git a/modules/core/ui/theme/css/regions.css b/modules/core/ui/theme/css/regions.css index 31b941d91..81e44819c 100644 --- a/modules/core/ui/theme/css/regions.css +++ b/modules/core/ui/theme/css/regions.css @@ -14,3 +14,10 @@ .toolbar-id--toolbar-icon-user { margin-right: 0 !important; } + +/* Decrease top margin from elements below page title. */ +.layout-container .page-content > .help, +.layout-container .page-content > .region-highlighted, +.layout-container .page-content > .region-content { + margin-top: var(--gin-spacing-s); +}