Skip to content

Commit

Permalink
Merge pull request #15 from bside-ms/dev
Browse files Browse the repository at this point in the history
Housekeeping + EventDetails
  • Loading branch information
Haliax authored Dec 2, 2024
2 parents c1eec56 + ddf0ce2 commit 20d20a9
Show file tree
Hide file tree
Showing 61 changed files with 640 additions and 2,189 deletions.
361 changes: 0 additions & 361 deletions .eslintrc.js

This file was deleted.

4 changes: 1 addition & 3 deletions components/blocks/buttonBlock/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ const Button = ({ title, href, text, target = '_self', inverse = false }: Props)
className="mx-auto py-4 text-center"
>
{!isEmptyString(title) && (
<div className="mb-1 font-serif text-xl font-bold md:mb-3 md:text-2xl ">
{title}
</div>
<div className="mb-1 font-serif text-xl font-bold md:mb-3 md:text-2xl">{title}</div>
)}

<Link
Expand Down
4 changes: 1 addition & 3 deletions components/blocks/buttonBlock/InlineButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ const Button = ({ title, href, text, target = '_self' }: Props): ReactElement =>
className="mx-auto py-4 text-center"
>
{!isEmptyString(title) && (
<div className="mb-1 font-serif text-xl font-bold md:mb-3 md:text-2xl ">
{title}
</div>
<div className="mb-1 font-serif text-xl font-bold md:mb-3 md:text-2xl">{title}</div>
)}

<Link
Expand Down
4 changes: 1 addition & 3 deletions components/blocks/callToActionBlock/CallToAction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ const CallToAction = ({ title, href, text, withArrows = true }: Props): ReactEle
)}

{!isEmptyString(title) && (
<div className="mb-1 font-serif text-xl font-bold md:mb-3 md:text-2xl ">
{title}
</div>
<div className="mb-1 font-serif text-xl font-bold md:mb-3 md:text-2xl">{title}</div>
)}

<Link
Expand Down
Loading

0 comments on commit 20d20a9

Please sign in to comment.