ORIENT/modules/backend/layouts/_custom_styles.htm

15 lines
339 B
HTML

<?php
use Backend\Models\BrandSettings;
use Backend\Models\EditorSetting;
?>
<?php if (BrandSettings::isConfigured()): ?>
<style>
<?= BrandSettings::renderCss() ?>
</style>
<?php endif ?>
<?php if (EditorSetting::isConfigured()): ?>
<style>
<?= EditorSetting::renderCss() ?>
</style>
<?php endif ?>