-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! feat(apps): create the code of conduct frontend application
- Loading branch information
1 parent
1d3655e
commit 3921c30
Showing
8 changed files
with
45 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ ng_module( | |
) | ||
|
||
sass_binary( | ||
name = "app-style", | ||
name = "style", | ||
src = "app.component.scss", | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,27 @@ | ||
// 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/ | ||
$code-of-conduct-primary: mat.define-palette(mat.$teal-palette); | ||
$code-of-conduct-accent: mat.define-palette(mat.$blue-palette, A200, A100, A400); | ||
$code-of-conduct-theme: mat.define-light-theme( | ||
( | ||
color: ( | ||
primary: $code-of-conduct-primary, | ||
accent: $code-of-conduct-accent, | ||
), | ||
typography: mat.define-typography-config(), | ||
density: -1, | ||
) | ||
); | ||
|
||
// The warn palette is optional (defaults to red). | ||
$code-of-conduct-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". | ||
$code-of-conduct-theme: mat.define-light-theme(( | ||
color: ( | ||
primary: $code-of-conduct-primary, | ||
accent: $code-of-conduct-accent, | ||
warn: $code-of-conduct-warn, | ||
), | ||
typography: mat.define-typography-config(), | ||
density: -1, | ||
)); | ||
|
||
// 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($code-of-conduct-theme); | ||
|
||
/* You can add global styles to this file, and also import other style files */ | ||
|
||
html, body { height: 100%; } | ||
body { margin: 0; font-family: Roboto, "Helvetica Neue", sans-serif; } | ||
html, | ||
body { | ||
height: 100%; | ||
} | ||
body { | ||
margin: 0; | ||
font-family: Roboto, 'Helvetica Neue', sans-serif; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters