Skip to content

Commit 2cd42e3

Browse files
committed
Merge remote-tracking branch 'origin/main' into stevenmasley/deleting_workspace_params
2 parents cfe2120 + e5758a1 commit 2cd42e3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

site/src/components/SignInLayout/SignInLayout.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ export const SignInLayout: FC<PropsWithChildren> = ({ children }) => {
1717
const styles = {
1818
container: {
1919
flex: 1,
20-
height: "-webkit-fill-available",
20+
// Fallback to 100vh
21+
height: ["100vh", "-webkit-fill-available"],
2122
display: "flex",
2223
justifyContent: "center",
2324
alignItems: "center",

site/src/pages/CliInstallPage/CliInstallPageView.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ export const CliInstallPageView: FC<CliInstallPageViewProps> = ({ origin }) => {
3939
const styles = {
4040
container: {
4141
flex: 1,
42-
height: "-webkit-fill-available",
42+
// Fallback to 100vh
43+
height: ["100vh", "-webkit-fill-available"],
4344
display: "flex",
4445
flexDirection: "column",
4546
justifyContent: "center",

0 commit comments

Comments
 (0)