Removing unnecessary space between panel heading and panel border

Viewed 1037

My current situation is like this: http://i.imgur.com/qq15FEK.png

I have a panel, where the heading and border are the same color. I've overwritten the panel-info default color to use my own.

My problem is the small white gap between the heading and the border. I've tried changing the padding and border styles, but to no avail.

How do I make the heading take up the whole space of the panel, so as to remove the gap that appears?

/* This is the CSS that overrides the default bootstrap panel. */

.panel-info>.panel-heading {
  color: #000 !important;
  background-color: #6fc45b !important;
}

.panel-info {
  border-color: #6fc45b !important;
}
<div class="col-sm-12">
  <div class="panel panel-info">
    <div class="panel-heading">
      <h3 class="panel-title">Lejeperiode</h3>
    </div>
    <div class="panel-body">
      Højsæson er skolernes vinterferie, sommerferie samt efterårsferie. I disse uger trækkes der lod. I højsæsonen kan man ikke booke weekender, med mindre de er ledige. I lavsæsonen kan man leje hele ugen, weekender samt mandag til torsdag. Weekender samt
      mandag til torsdag bekræftes først en måned inden, da de altid kan overgåes af udlejning af hele ugen.
    </div>
  </div>
</div>

1 Answers
Related