We need to store the # within the vaule

This commit is contained in:
James Brooks
2014-12-29 19:52:44 +00:00
parent 68fee6d1b3
commit 4590ef542b

View File

@@ -1,10 +1,10 @@
<style type='text/css'>
body.status-page {
@if($styleBackgroundColor = Setting::get('style_background_color'))
background-color: #{{ $styleBackgroundColor }};
background-color: {{ $styleBackgroundColor }};
@endif
@if($styleTextColor = Setting::get('style_text_color'))
color: #{{ $styleTextColor }};
color: {{ $styleTextColor }};
@endif
}
</style>