Commit 159105da authored by Chris Rebert's avatar Chris Rebert Committed by Artur Kwiatkowski
Browse files

Fixes #7661

parent ec7f2cf2
Showing with 2 additions and 2 deletions
+2 -2
...@@ -414,7 +414,7 @@ ...@@ -414,7 +414,7 @@
@media (min-width: @grid-float-breakpoint) { @media (min-width: @grid-float-breakpoint) {
float: left; float: left;
// Calculate width based on number of columns available // Calculate width based on number of columns available
width: percentage(@columns / @grid-columns); width: percentage((@columns / @grid-columns));
} }
// Prevent columns from collapsing when empty // Prevent columns from collapsing when empty
min-height: 1px; min-height: 1px;
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
.panel-heading { .panel-heading {
margin: -15px -15px 15px; margin: -15px -15px 15px;
padding: 10px 15px; padding: 10px 15px;
font-size: @font-size-base * 1.25; font-size: (@font-size-base * 1.25);
font-weight: 500; font-weight: 500;
background-color: @panel-heading-bg; background-color: @panel-heading-bg;
border-bottom: 1px solid @panel-border; border-bottom: 1px solid @panel-border;
......
Supports Markdown
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