Files
cachet-docker/app/views/partials/stylesheet.blade.php
2015-01-06 16:24:00 -06:00

11 lines
293 B
PHP

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