Skip to content

Commit b198352

Browse files
Removed the stripe banner, tweaked some styles
1 parent e2f45dd commit b198352

15 files changed

+15
-93
lines changed

apps/fretonator-web/src/app/common/header/header.component.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
flex-direction: column;
1010
justify-content: center;
1111
align-content: center;
12+
border-top: pxToRem($grid-unit / 2) solid var(--header-border-color);
1213
}
1314

1415
.header__topRow {

apps/fretonator-web/src/app/common/stripe-banner/stripe-banner.component.html

Lines changed: 0 additions & 4 deletions
This file was deleted.

apps/fretonator-web/src/app/common/stripe-banner/stripe-banner.component.scss

Lines changed: 0 additions & 10 deletions
This file was deleted.

apps/fretonator-web/src/app/common/stripe-banner/stripe-banner.component.spec.ts

Lines changed: 0 additions & 25 deletions
This file was deleted.

apps/fretonator-web/src/app/common/stripe-banner/stripe-banner.component.ts

Lines changed: 0 additions & 9 deletions
This file was deleted.

apps/fretonator-web/src/app/common/stripe-banner/stripe-banner.module.ts

Lines changed: 0 additions & 15 deletions
This file was deleted.

apps/fretonator-web/src/app/pages/about/about-index/about-index.component.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
<app-stripe-banner></app-stripe-banner>
2-
31
<main class="about__container">
42
<p class="about__title">Hi there! <span role="img" aria-label="waving emoji">👋🏼</span></p>
53
<h1 class="about__subtitle">Thanks for checking out the Fretonator!</h1>

apps/fretonator-web/src/app/pages/about/about.module.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@ import { CommonModule } from '@angular/common';
33

44
import { AboutRoutingModule } from './about-routing.module';
55
import { AboutIndexComponent } from './about-index/about-index.component';
6-
import { StripeBannerModule } from '../../common/stripe-banner/stripe-banner.module';
76

87
@NgModule({
98
declarations: [AboutIndexComponent],
109
imports: [
1110
CommonModule,
12-
AboutRoutingModule,
13-
StripeBannerModule
11+
AboutRoutingModule
1412
],
1513
exports: [AboutIndexComponent]
1614
})

apps/fretonator-web/src/app/pages/contact/contact-index/contact-index.component.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
<app-stripe-banner></app-stripe-banner>
21
<div class="form__container" #scrollTarget>
32
<h1 class="form__title">Share the love <span role="img" aria-label="red heart emoji">❤️</span></h1>
43
<p class="form__copy">My goal with

apps/fretonator-web/src/app/pages/contact/contact.module.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import { ContactSuccessComponent } from './contact-success/contact-success.compo
88
import { HttpClientModule } from '@angular/common/http';
99
import { FormService } from './form.service';
1010
import { TickModule } from '../../common/svgs/tick/tick.module';
11-
import { StripeBannerModule } from '../../common/stripe-banner/stripe-banner.module';
12-
1311

1412
@NgModule({
1513
declarations: [ContactIndexComponent, ContactSuccessComponent],
@@ -20,7 +18,6 @@ import { StripeBannerModule } from '../../common/stripe-banner/stripe-banner.mod
2018
FormsModule,
2119
HttpClientModule,
2220
TickModule,
23-
StripeBannerModule
2421
],
2522
providers: [
2623
FormService

0 commit comments

Comments
 (0)