Changed Logo and Header

logo has two variants. Changed story to reflect that. Updated header
This commit is contained in:
t1enne
2022-05-08 10:45:45 +02:00
parent 93d69a26eb
commit 00bc662c7f
9 changed files with 213 additions and 171 deletions

View File

@@ -7,9 +7,6 @@
.logo {
display: flex;
align-items: center;
svg {
height: 60px;
}
span {
margin-left: 1rem;
font-size: 1.7rem;

View File

@@ -1,6 +1,5 @@
import { Layout } from 'antd';
import { UserDropdown } from '../../common';
import Logo from '../../logo';
import { OwncastLogo, UserDropdown } from '../../common';
import s from './Header.module.scss';
const { Header } = Layout;
@@ -13,7 +12,7 @@ export default function HeaderComponent({ name = 'Your stream title' }: Props) {
return (
<Header className={`${s.header}`}>
<div className={`${s.logo}`}>
<Logo />
<OwncastLogo variant='contrast'/>
<span>{name}</span>
</div>
<UserDropdown />