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
3 changes: 3 additions & 0 deletions .env.local.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
NEXT_PUBLIC_SUPABASE_URL=https://<your-project-code>.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=<your-anon-key>
NEXT_PUBLIC_HOSTNAME=http://localhost:3001
298 changes: 149 additions & 149 deletions app/donate/donate.module.scss
Original file line number Diff line number Diff line change
@@ -1,149 +1,149 @@
@import '../styles/globals.scss';

.container {
display: flex;
flex-direction: column;
margin: $space-xl 0;
color: $textBlack;

.callToAction {
background-color: $lightenedBlue;
padding: $space-md;
display: flex;
justify-content: space-around;
align-items: center;

@include for-phone-only {
flex-direction: column;
}

@include for-tablet-up {
flex-direction: column;
}

@include for-desktop-up {
flex-direction: row;
}

.actionText {
width: 50%;
line-height: 1.3;

@include for-phone-only {
width: 100%;
}
@include for-tablet-up {
width: 80%;
}
@include for-desktop-up {
width: 50%;
}

h3 {
font-family: $primaryHeaderFont;
}
p {
font-size: $f4;
margin: $space-lg 0;
font-family: $primaryTextFont;
}
}

img {
@include for-phone-only {
display: none;
}
@include for-tablet-up {
display: none;
}
@include for-desktop-up {
display: inline;
}
}
}

.donate {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: $space-xl $space-md;

h2 {
font-family: $secondaryHeaderFont;
}

.options {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
padding: $space-xl $space-md;
width: 100%;

@include for-phone-only {
flex-direction: column;
}

@include for-tablet-up {
flex-direction: column;
}

@include for-desktop-up {
flex-direction: row;
}

.option {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
padding: $space-lg;

@include for-phone-only {
border-bottom: 1px solid $subTextBlack;
width: 70%;
height: auto;
}

@include for-tablet-up {
border-bottom: 1px solid $subTextBlack;
width: 70%;
height: auto;
}

@include for-desktop-up {
border-bottom: none;
width: auto;
height: 200px;

}

.paypalContainer {
display: flex;
flex-direction: column;
align-items: center;
}

.donateText {
font-family: $primaryTextFont;
font-size: $f4;
}

.donateSubText {
font-family: $secondaryTextFont;
font-size: $f5;
line-height: 1.2;
b {
font-weight: bold;
}
}

.icon {
margin: $space-sm;
font-size: $f3;
}
}
}
}
}
// @import '../styles/globals.scss';

// .container {
// display: flex;
// flex-direction: column;
// margin: $space-xl 0;
// color: $textBlack;

// .callToAction {
// background-color: $lightenedBlue;
// padding: $space-md;
// display: flex;
// justify-content: space-around;
// align-items: center;

// @include for-phone-only {
// flex-direction: column;
// }

// @include for-tablet-up {
// flex-direction: column;
// }

// @include for-desktop-up {
// flex-direction: row;
// }

// .actionText {
// width: 50%;
// line-height: 1.3;

// @include for-phone-only {
// width: 100%;
// }
// @include for-tablet-up {
// width: 80%;
// }
// @include for-desktop-up {
// width: 50%;
// }

// h3 {
// font-family: $primaryHeaderFont;
// }
// p {
// font-size: $f4;
// margin: $space-lg 0;
// font-family: $primaryTextFont;
// }
// }

// img {
// @include for-phone-only {
// display: none;
// }
// @include for-tablet-up {
// display: none;
// }
// @include for-desktop-up {
// display: inline;
// }
// }
// }

// .donate {
// display: flex;
// flex-direction: column;
// align-items: center;
// justify-content: center;
// padding: $space-xl $space-md;

// h2 {
// font-family: $secondaryHeaderFont;
// }

// .options {
// display: flex;
// flex-direction: row;
// justify-content: space-around;
// align-items: center;
// padding: $space-xl $space-md;
// width: 100%;

// @include for-phone-only {
// flex-direction: column;
// }

// @include for-tablet-up {
// flex-direction: column;
// }

// @include for-desktop-up {
// flex-direction: row;
// }

// .option {
// display: flex;
// flex-direction: column;
// justify-content: flex-start;
// align-items: center;
// padding: $space-lg;

// @include for-phone-only {
// border-bottom: 1px solid $subTextBlack;
// width: 70%;
// height: auto;
// }

// @include for-tablet-up {
// border-bottom: 1px solid $subTextBlack;
// width: 70%;
// height: auto;
// }

// @include for-desktop-up {
// border-bottom: none;
// width: auto;
// height: 200px;

// }

// .paypalContainer {
// display: flex;
// flex-direction: column;
// align-items: center;
// }

// .donateText {
// font-family: $primaryTextFont;
// font-size: $f4;
// }

// .donateSubText {
// font-family: $secondaryTextFont;
// font-size: $f5;
// line-height: 1.2;
// b {
// font-weight: bold;
// }
// }

// .icon {
// margin: $space-sm;
// font-size: $f3;
// }
// }
// }
// }
// }
Loading