mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-22 15:54:26 +00:00
no log: Move theme-color meta to Header.tsx
This commit is contained in:
parent
2c5aecc0db
commit
03156f2981
2 changed files with 4 additions and 1 deletions
|
@ -17,7 +17,6 @@
|
|||
name="description"
|
||||
content="Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you."
|
||||
/>
|
||||
<meta name="theme-color" content="#911f93" />
|
||||
<link rel="manifest" href="%PUBLIC_URL%/static/manifest.json" />
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
@ -15,6 +15,7 @@ import {
|
|||
Navbar,
|
||||
Row,
|
||||
} from "react-bootstrap";
|
||||
import { Helmet } from "react-helmet";
|
||||
import { SidebarToggleContext } from ".";
|
||||
import { siteRedirectToAuth } from "../@redux/actions";
|
||||
import { useSystemSettings } from "../@redux/hooks";
|
||||
|
@ -101,6 +102,9 @@ const Header: FunctionComponent<Props> = () => {
|
|||
|
||||
return (
|
||||
<Navbar bg="primary" className="flex-grow-1 px-0">
|
||||
<Helmet>
|
||||
<meta name="theme-color" content="#911f93" />
|
||||
</Helmet>
|
||||
<div className="header-icon px-3 m-0 d-none d-md-block">
|
||||
<Image
|
||||
alt="brand"
|
||||
|
|
Loading…
Reference in a new issue