Fix header font weight
This commit is contained in:
parent
095b0287f0
commit
3d3663c540
2 changed files with 3 additions and 2 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Reference in a new issue