Skip to content
Snippets Groups Projects
Unverified Commit 47b57de8 authored by Lukas Eipert's avatar Lukas Eipert
Browse files

Remove top margin in modal header titles

parent 6a8b89d9
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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;
Loading
Loading
@@ -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;
}
}
}
 
Loading
Loading
Loading
Loading
@@ -29,10 +29,6 @@
padding-right: 28px;
}
}
.page-title {
margin-top: 0;
}
}
 
.modal-body {
Loading
Loading
---
title: Remove top margin in modal header titles
merge_request: 24108
author:
type: fixed
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment