Fix header font weight
This commit is contained in:
@@ -6,6 +6,7 @@ import { ReactComponent as Logo } from "./icons/Logo.svg";
|
|||||||
import { ReactComponent as VideoIcon } from "./icons/Video.svg";
|
import { ReactComponent as VideoIcon } from "./icons/Video.svg";
|
||||||
import { ReactComponent as ArrowLeftIcon } from "./icons/ArrowLeft.svg";
|
import { ReactComponent as ArrowLeftIcon } from "./icons/ArrowLeft.svg";
|
||||||
import { useButton } from "@react-aria/button";
|
import { useButton } from "@react-aria/button";
|
||||||
|
import { Subtitle } from "./typography/Typography";
|
||||||
|
|
||||||
export function Header({ children, className, ...rest }) {
|
export function Header({ children, className, ...rest }) {
|
||||||
return (
|
return (
|
||||||
@@ -61,7 +62,7 @@ export function RoomHeaderInfo({ roomName }) {
|
|||||||
<div className={styles.roomAvatar}>
|
<div className={styles.roomAvatar}>
|
||||||
<VideoIcon width={16} height={16} />
|
<VideoIcon width={16} height={16} />
|
||||||
</div>
|
</div>
|
||||||
<h3>{roomName}</h3>
|
<Subtitle fontWeight="semiBold">{roomName}</Subtitle>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.leftNav h3 {
|
.leftNav h3 {
|
||||||
font-size: 15px;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.rightNav {
|
.rightNav {
|
||||||
|
|||||||
Reference in New Issue
Block a user