Commit 47b57de8 authored by Lukas Eipert's avatar Lukas Eipert

Remove top margin in modal header titles

parent 6a8b89d9
......@@ -70,6 +70,17 @@ h6,
margin-bottom: 10px;
}
/* Our adjustments to hx & .hx above add unnecessary margins to modal-title
and page-title in modals, so we set them to 0 in order to have properly
formatted modal headers. */
.modal-header {
.modal-title,
.page-title {
margin-top: 0;
margin-bottom: 0;
}
}
h5,
.h5 {
font-size: $gl-font-size;
......@@ -142,7 +153,9 @@ table {
@include media-breakpoint-up($breakpoint) {
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
.d#{$infix}-table-header-group { display: table-header-group !important; }
.d#{$infix}-table-header-group {
display: table-header-group !important;
}
}
}
......
......@@ -29,10 +29,6 @@
padding-right: 28px;
}
}
.page-title {
margin-top: 0;
}
}
.modal-body {
......
---
title: Remove top margin in modal header titles
merge_request: 24108
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment