From f7ad13554a85c6d949ceed2124da445f4a6011a1 Mon Sep 17 00:00:00 2001 From: Zak Timson Date: Tue, 3 May 2022 18:18:17 +0000 Subject: [PATCH] Fixed some minor things --- src/app/views/home/home.component.html | 6 +++--- src/custom-theme.scss | 9 --------- src/styles.scss | 27 +++----------------------- 3 files changed, 6 insertions(+), 36 deletions(-) delete mode 100644 src/custom-theme.scss diff --git a/src/app/views/home/home.component.html b/src/app/views/home/home.component.html index e284e12..3ac8342 100644 --- a/src/app/views/home/home.component.html +++ b/src/app/views/home/home.component.html @@ -12,8 +12,8 @@
DEVOPS & SOFTWARE ENGINEER
London Ontario, Canada
-
zaktimson@gmail.com -
+
zaktimson@gmail.com
+
gitlab.zakscode.com
github.com/ztimson
@@ -62,7 +62,7 @@
diff --git a/src/custom-theme.scss b/src/custom-theme.scss deleted file mode 100644 index 0530dce..0000000 --- a/src/custom-theme.scss +++ /dev/null @@ -1,9 +0,0 @@ -@import '~@angular/material/theming'; -@include mat-core(); - -$ZaksCode-primary: mat-palette($mat-indigo); -$ZaksCode-accent: mat-palette($mat-pink, A200, A100, A400); -$ZaksCode-warn: mat-palette($mat-red); -$ZaksCode-theme: mat-light-theme($ZaksCode-primary, $ZaksCode-accent, $ZaksCode-warn); - -@include angular-material-theme($ZaksCode-theme); diff --git a/src/styles.scss b/src/styles.scss index 601a7dc..f2fa1a2 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -1,25 +1,13 @@ +@import url("https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css"); +@import url("https://use.fontawesome.com/releases/v5.8.1/css/all.css"); +@import url("https://fonts.googleapis.com/icon?family=Material+Icons|Roboto:300,400,500"); -// Custom Theming for Angular Material -// For more information: https://material.angular.io/guide/theming @use '@angular/material' as mat; -// Plus imports for other components in your app. - -// Include the common styles for Angular Material. We include this here so that you only -// have to load a single css file for Angular Material in your app. -// Be sure that you only ever include this mixin once! @include mat.core(); -// Define the palettes for your theme using the Material Design palettes available in palette.scss -// (imported above). For each palette, you can optionally specify a default, lighter, and darker -// hue. Available color palettes: https://material.io/design/color/ $zakscode-primary: mat.define-palette(mat.$indigo-palette); $zakscode-accent: mat.define-palette(mat.$pink-palette, A200, A100, A400); - -// The warn palette is optional (defaults to red). $zakscode-warn: mat.define-palette(mat.$red-palette); - -// Create the theme object. A theme consists of configurations for individual -// theming systems such as "color" or "typography". $zakscode-theme: mat.define-light-theme(( color: ( primary: $zakscode-primary, @@ -27,15 +15,8 @@ $zakscode-theme: mat.define-light-theme(( warn: $zakscode-warn, ) )); - -// Include theme styles for core and each component used in your app. -// Alternatively, you can import and @include the theme mixins for each component -// that you are using. @include mat.all-component-themes($zakscode-theme); -@import url("https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css"); -@import url("https://use.fontawesome.com/releases/v5.8.1/css/all.css"); -@import url("https://fonts.googleapis.com/icon?family=Material+Icons|Roboto:300,400,500"); ::-webkit-scrollbar-track { background-color: #354B72; @@ -69,5 +50,3 @@ body { background-color: #354B72; } -html, body { height: 100%; } -body { margin: 0; font-family: Roboto, "Helvetica Neue", sans-serif; }