jacksleight / statamic-lazy-logo
Installs: 3 597
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- statamic/cms: ^3.1|^4.0|^5.0
README
Lazy Logo
This Statamic addon automatically generates a control panel logo image based on the application name. It supports custom text and styles, different logo styles for outside (login etc.) and inside pages, and setting an outside page background.
Note This addon uses Statamic's white labeling feature, which is Pro only. Therefore this addon will only work with the Pro edition.
Installation
You can search for this addon in the Tools > Addons
section of the Statamic control panel and click install, or run the following command from your project root:
composer require jacksleight/statamic-lazy-logo
Then set the statamic.cp.custom_logo_url
config option to the Lazy Logo paths:
'custom_logo_url' => [ 'nav' => '/cp/lazy-logo/nav.svg', 'outside' => '/cp/lazy-logo/outside.svg', ],
Configuration
You can customise the styles by publishing the config:
php please vendor:publish --tag=statamic-lazy-logo-config
And then opening config/statamic/lazy_logo.php
to make your changes.
Outside Page Background
You can enable the Lazy Logo background by setting the statamic.cp.custom_css_url
config option to the Lazy Logo path:
'custom_css_url' => '/cp/lazy-logo/cp.css',
And then changing the statamic.cp.theme
config option to lazy-logo
:
'theme' => 'lazy-logo',