[ACS-4792] provide support for style linting (#3055)

* [ACS-4792] provide support for style linting

* style fixes

* style fixes

* style fixes

* disable yarn licenses until the issue is fixed

* fix package lock

* fix after rebase
This commit is contained in:
Denys Vuika
2023-03-14 04:16:36 -04:00
committed by GitHub
parent c996d7d7d1
commit b939d1c582
39 changed files with 970 additions and 256 deletions

View File

@@ -1,18 +1,17 @@
/* stylelint-disable value-keyword-case */
@use '@angular/material' as mat;
@import './overrides/adf-style-fixes.theme';
@import './overrides/adf-pagination.theme';
@import './overrides/ay11';
@import './overrides/adf-about.theme.scss';
@import './overrides/adf-about.theme';
@import './colors';
$mat-primary-palette: mat.define-palette($aca-primary-blue, A100);
$mat-accent-palette: mat.define-palette($aca-accent-green, A200);
$mat-warn-palette: mat.define-palette($aca-warn, A100);
$app-typography: mat.define-typography-config($font-family: 'Open Sans');
$app-typography: mat.define-typography-config($font-family: 'Open Sans'
);
@include mat.core();
@include mat.core($app-typography);
$custom-theme: mat.define-light-theme(
(
@@ -30,6 +29,6 @@ $custom-theme: mat.define-light-theme(
@include adf-core-theme($theme);
@include adf-style-fixes($theme);
@include adf-pagination-theme($theme);
@include ay11-theme();
@include ay11-theme;
@include adf-about-theme($theme);
}