Files
cachet-docker/resources/views/partials/stylesheet.blade.php
2015-03-20 18:30:45 -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>