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

fix:slack button url #230

Merged
merged 1 commit into from
Dec 4, 2024
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
2 changes: 1 addition & 1 deletion site/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const App = () => {
<div>
<h1>Join the community!</h1>
<p>Engage in the Meshery community by joining us on Slack</p>
<Button href="https://slack.meshery.io/" >Join Our Open Source Community</Button>
<Button url="https://slack.meshery.io/" >Join Our Open Source Community</Button>
</div>
</section>
<section>
Expand Down
15 changes: 0 additions & 15 deletions site/src/App.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,21 +265,6 @@ export const Main = styled.main`

.join-community {
text-align: center;
a {
display: block;
background: #ebc017;
color: ${({ theme }) => theme.btn};
width: 14rem;
padding: 1rem;
margin: auto;
border-radius: 0.5rem;
transition: 0.2s ease-in-out;
&:hover {
background-color: rgba(255, 208, 25, 1);
box-shadow: 0px 0px 12px #ebc017;
color: #fff;
}
}
}
section.playground-btn {
margin-top: 4rem;
Expand Down
Loading