Skip to content
Open
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
4 changes: 4 additions & 0 deletions src/components/pages-styles/find-club.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
// Themes the club listing page.
// Alters the layout of filter components.
.find-club {
&__register {
display: flex;
justify-content: flex-end;
}
&__header {
@include margin-bottom(50px);
width: 100%;
Expand Down
12 changes: 11 additions & 1 deletion src/pages/clubs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ class Clubs extends React.PureComponent {
</Helmet>
<LayoutContained>
<div className="find-club__header">
<h1> Clubs </h1>
<h1>Clubs</h1>
<div className="find-club__filters-wrapper">
<ShadowBox className="find-club__filters-wrapper-inner">
<div className="find-club__filter-toggle">
Expand All @@ -252,6 +252,16 @@ class Clubs extends React.PureComponent {
</ShadowBox>
</div>
</div>
<div className="find-club__register">
<a
className="button button--header"
href="http://eepurl.com/glb1Nj"
target="_blank"
rel="noopener noreferrer"
>
Register your club
</a>
</div>
{content}

{this.clubQuery()}
Expand Down