Fix .component inner spacing

This commit is contained in:
Giuseppe Criscione 2019-04-13 19:10:42 +02:00
parent f46e4d4cf6
commit 08742fa232
3 changed files with 7 additions and 3 deletions

View File

@ -1955,12 +1955,16 @@ input[type=range] {
margin-left: 15.875rem; } }
.component {
overflow: auto;
margin-bottom: 1rem;
padding: 1.5rem;
border-radius: 3px;
background-color: #fff;
box-shadow: rgba(240, 240, 240, 0.25) 1px 1px 9px 3px; }
.component::before, .component::after {
display: table;
content: ' '; }
.component::after {
clear: both; }
.caption {
margin-bottom: 1rem;

File diff suppressed because one or more lines are too long

View File

@ -176,12 +176,12 @@
}
.component {
overflow: auto;
margin-bottom: $component-margin-bottom;
padding: $component-padding;
border-radius: $border-radius;
background-color: #fff;
box-shadow: $component-box-shadow;
@include clearfix;
}
.caption {