Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove room code button #5617

Merged
merged 1 commit into from
Aug 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions src/react-components/home/HomePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import { MediaTile } from "../room/MediaTiles";
import { PageContainer } from "../layout/PageContainer";
import { scaledThumbnailUrlFor } from "../../utils/media-url-utils";
import { Column } from "../layout/Column";
import { Button } from "../input/Button";
import { Container } from "../layout/Container";
import { SocialBar } from "../home/SocialBar";
import { SignInButton } from "./SignInButton";
Expand Down Expand Up @@ -180,13 +179,6 @@ export function HomePage() {
</Column>
</Container>
)}
<Container>
<Column center grow>
<Button thin preset="landing" as="a" href="/link">
<FormattedMessage id="home-page.have-code" defaultMessage="Have a room code?" />
</Button>
</Column>
</Container>
{isHmc() ? (
<Column center>
<SocialBar />
Expand Down
2 changes: 1 addition & 1 deletion src/react-components/home/SocialBar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
justify-content: space-around;
width: 169px;
align-items: center;
margin-bottom: 1em !important;
margin-bottom: 2em !important;
}
}

Expand Down
3 changes: 0 additions & 3 deletions src/react-components/input/Button.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,5 @@ export const Landing = () => (
<Button preset="landing" thick>
Get Started
</Button>
<Button preset="landing" thin>
Have a room code?
</Button>
</Column>
);