Adds a 4K logo to your Bazarr css.
## Setup
#### Docker mod
`-e TP_ADDON=bazarr-4k-logo`
#### Nginx
Examples of how to add it:
```nginx
proxy_set_header Accept-Encoding "";
sub_filter
''
'
';
sub_filter_once on;
```
#### Apache
```nginx
AddOutputFilterByType SUBSTITUTE text/html
Substitute 's| '
';|'
```
#### Caddy
```nginx
filter rule {
content_type text/html.*
search_pattern
replacement ""
}
```
#### Stylus
Just add another import line.
```css
@import "https://theme-park.dev/CSS/themes/bazarr/THEME.css";
@import "https://theme-park.dev/CSS/addons/bazarr/bazarr-4k-logo.css";
```