Quick fixes from last PR
This commit is contained in:
@ -14,7 +14,7 @@ type Props = {
|
|||||||
function HeaderBlock({ user, team, children }: Props) {
|
function HeaderBlock({ user, team, children }: Props) {
|
||||||
return (
|
return (
|
||||||
<Header justify="space-between" align="center">
|
<Header justify="space-between" align="center">
|
||||||
<Flex align="center" column>
|
<Flex align="flex-start" column>
|
||||||
<TeamName>{team.name}</TeamName>
|
<TeamName>{team.name}</TeamName>
|
||||||
<UserName>{user.name}</UserName>
|
<UserName>{user.name}</UserName>
|
||||||
</Flex>
|
</Flex>
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
html, body, .viewport {
|
html, body, .viewport {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
min-height: 100vh;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
#root {
|
#root {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
height: 100%;
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
#root {
|
#root {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
height: 100%;
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
Reference in New Issue
Block a user