Decrease space at top of pages around help

This commit is contained in:
Paul Weidner 2023-08-25 15:24:50 -07:00 committed by Michael Stenta
parent 5b6ec6cc73
commit a18e44cd8d
2 changed files with 9 additions and 2 deletions

View File

@ -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);
}

View File

@ -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);
}