fix page header background color on room view header
This commit is contained in:
parent
afac47d312
commit
a6f75eb5c5
1 changed files with 5 additions and 1 deletions
|
|
@ -68,6 +68,7 @@ import { useRoomCreators } from '../../hooks/useRoomCreators';
|
|||
import { useRoomPermissions } from '../../hooks/useRoomPermissions';
|
||||
import { InviteUserPrompt } from '../../components/invite-user-prompt';
|
||||
import { useCallState } from '../../pages/client/call/CallProvider';
|
||||
import { ContainerColor } from '../../styles/ContainerColor.css';
|
||||
|
||||
type RoomMenuProps = {
|
||||
room: Room;
|
||||
|
|
@ -296,7 +297,10 @@ export function RoomViewHeader() {
|
|||
};
|
||||
|
||||
return (
|
||||
<PageHeader balance={screenSize === ScreenSize.Mobile}>
|
||||
<PageHeader
|
||||
className={ContainerColor({ variant: 'Surface' })}
|
||||
balance={screenSize === ScreenSize.Mobile}
|
||||
>
|
||||
<Box grow="Yes" gap="300">
|
||||
{screenSize === ScreenSize.Mobile && (
|
||||
<BackRouteHandler>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue