Add a margin below the no-image placeholder in the dashboard edit item

This commit is contained in:
Kevin MacMartin 2018-01-11 23:51:48 -05:00
parent bf0703b7d3
commit 26bed078e2
2 changed files with 5 additions and 1 deletions

View file

@ -363,6 +363,10 @@ body {
background-repeat: no-repeat;
}
.no-image {
margin-bottom: 15px;
}
.back-button { float: left; }
.submit-button { float: right; }

View file

@ -53,7 +53,7 @@
@if(file_exists(base_path() . '/public' . $current_image))
<div class="current-image" style="background-image: url({{ $current_image }});"></div>
@else
<div>(No Image Set)</div>
<div class="no-image">(No Image Set)</div>
@endif
@elseif($column['type'] == 'display')
<div class="text-display">{{ $value }}</div>