From ca7e618ca3350a5cf200ae39c851b016c9088d41 Mon Sep 17 00:00:00 2001 From: transtrike Date: Thu, 25 Feb 2021 20:51:24 +0200 Subject: Footer added; Pages fucked up --- src/theme.scss | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 src/theme.scss (limited to 'src/theme.scss') diff --git a/src/theme.scss b/src/theme.scss deleted file mode 100644 index a87ae45..0000000 --- a/src/theme.scss +++ /dev/null @@ -1,14 +0,0 @@ -// Import theming functions -@import '~@angular/material/theming'; -@import './styles.css'; -@include mat-core(); - -// Custom Angular theme - -// $my-custom-primary: mat-palette($mat-deep-purple); -// $my-custom-accent: mat-palette($mat-pink, 100, 500, A100); -// $my-custom-warn: mat-palette($mat-lime); - -// $my-custom-theme: mat-light-theme($my-custom-primary, $my-custom-accent, $my-custom-warn); - -// @include angular-material-theme($my-custom-theme); \ No newline at end of file -- cgit v1.2.3 From 075e65d078a7207394b52165cdde175d4202b46b Mon Sep 17 00:00:00 2001 From: Syndamia Date: Thu, 4 Mar 2021 16:10:39 +0200 Subject: Added back theme.scss, as it gave build errors --- src/theme.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/theme.scss (limited to 'src/theme.scss') diff --git a/src/theme.scss b/src/theme.scss new file mode 100644 index 0000000..ebd9688 --- /dev/null +++ b/src/theme.scss @@ -0,0 +1,14 @@ +// Import theming functions +@import '~@angular/material/theming'; +@import './styles.css'; +@include mat-core(); + +// Custom Angular theme + +// $my-custom-primary: mat-palette($mat-deep-purple); +// $my-custom-accent: mat-palette($mat-pink, 100, 500, A100); +// $my-custom-warn: mat-palette($mat-lime); + +// $my-custom-theme: mat-light-theme($my-custom-primary, $my-custom-accent, $my-custom-warn); + +// @include angular-material-theme($my-custom-theme); -- cgit v1.2.3 From e5e786e6ea1f5e64cabf2feb9939a2c88e3ec03a Mon Sep 17 00:00:00 2001 From: Syndamia Date: Mon, 29 Mar 2021 12:44:45 +0300 Subject: Fully removed Angular material --- src/app/app.module.ts | 6 ------ src/theme.scss | 12 ------------ 2 files changed, 18 deletions(-) (limited to 'src/theme.scss') diff --git a/src/app/app.module.ts b/src/app/app.module.ts index c68f919..39f8ab3 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -2,9 +2,6 @@ import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { ReactiveFormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; -import { MatInputModule } from '@angular/material/input'; -import { MatButtonModule } from '@angular/material/button'; -import { MatFormFieldModule } from '@angular/material/form-field'; import { HttpClientModule } from '@angular/common/http'; import { ClipboardModule } from 'ngx-clipboard'; @@ -53,9 +50,6 @@ import { CommentPageComponent } from './components/comment-page/comment-page.com AppRoutingModule, ReactiveFormsModule, BrowserAnimationsModule, - MatFormFieldModule, - MatInputModule, - MatButtonModule, HttpClientModule, RouterModule, ClipboardModule diff --git a/src/theme.scss b/src/theme.scss index ebd9688..0194061 100644 --- a/src/theme.scss +++ b/src/theme.scss @@ -1,14 +1,2 @@ // Import theming functions -@import '~@angular/material/theming'; @import './styles.css'; -@include mat-core(); - -// Custom Angular theme - -// $my-custom-primary: mat-palette($mat-deep-purple); -// $my-custom-accent: mat-palette($mat-pink, 100, 500, A100); -// $my-custom-warn: mat-palette($mat-lime); - -// $my-custom-theme: mat-light-theme($my-custom-primary, $my-custom-accent, $my-custom-warn); - -// @include angular-material-theme($my-custom-theme); -- cgit v1.2.3