Skip to content
Snippets Groups Projects
Commit 08a7b8c4 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

fix scss imports

parent 35483a1d
No related branches found
No related tags found
2 merge requests!147Production Release | nshmp-apps,!138Angular 13
Showing
with 21 additions and 15 deletions
...@@ -104,12 +104,18 @@ ...@@ -104,12 +104,18 @@
"configurations": { "configurations": {
"development": { "development": {
"stylePreprocessorOptions": { "stylePreprocessorOptions": {
"includePaths": ["projects/nshmp-apps/src/environments/scss"] "includePaths": [
"projects/nshmp-apps/src/environments/scss",
"node_modules"
]
} }
}, },
"production": { "production": {
"stylePreprocessorOptions": { "stylePreprocessorOptions": {
"includePaths": ["projects/nshmp-apps/src/environments/scss-prod"] "includePaths": [
"projects/nshmp-apps/src/environments/scss-prod",
"node_modules"
]
}, },
"fileReplacements": [ "fileReplacements": [
{ {
......
@import '~@ghsc/nshmp-template/styles/uswds-functions'; @import '@ghsc/nshmp-template/styles/uswds-functions';
.job-info .mat-list-item { .job-info .mat-list-item {
height: 1.5em; height: 1.5em;
......
@import '~@ghsc/nshmp-template/styles/uswds-functions'; @import '@ghsc/nshmp-template/styles/uswds-functions';
$toolbarHeight: 3.5em; $toolbarHeight: 3.5em;
......
@import '~@ghsc/nshmp-template/styles/uswds-functions'; @import '@ghsc/nshmp-template/styles/uswds-functions';
.example-config { .example-config {
margin: 1em; margin: 1em;
......
@import '~@ghsc/nshmp-template/styles/uswds-functions'; @import '@ghsc/nshmp-template/styles/uswds-functions';
table { table {
height: 100%; height: 100%;
......
@import '~@ghsc/nshmp-template/styles/uswds-functions'; @import '@ghsc/nshmp-template/styles/uswds-functions';
@import url('https://unpkg.com/swagger-ui-dist/swagger-ui.css'); @import url('https://unpkg.com/swagger-ui-dist/swagger-ui.css');
@import url('https://unpkg.com/swagger-ui-themes@3.0.0/themes/3.x/theme-material.css'); @import url('https://unpkg.com/swagger-ui-themes@3.0.0/themes/3.x/theme-material.css');
......
@import '~mapbox-gl/dist/mapbox-gl.css'; @import 'mapbox-gl/dist/mapbox-gl.css';
@import '~@mapbox/mapbox-gl-geocoder/lib/mapbox-gl-geocoder.css'; @import '@mapbox/mapbox-gl-geocoder/lib/mapbox-gl-geocoder.css';
@import '../../../styles/mapbox'; @import '../../../styles/mapbox';
@import '~@ghsc/nshmp-template/styles/uswds-functions'; @import '@ghsc/nshmp-template/styles/uswds-functions';
.code-block { .code-block {
@include u-bg('base-lightest'); @include u-bg('base-lightest');
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* Styling for the dashboards * Styling for the dashboards
*/ */
@import '~@ghsc/nshmp-template/styles/uswds-functions'; @import '@ghsc/nshmp-template/styles/uswds-functions';
/* ---- Dashboards ---- */ /* ---- Dashboards ---- */
.dashboard { .dashboard {
......
@import './uswds-theme'; @import './uswds-theme';
@import '~@ghsc/nshmp-template/styles/styles.scss'; @import '@ghsc/nshmp-template/styles/styles.scss';
@import '~@ghsc/nshmp-template/styles/uswds-functions'; @import '@ghsc/nshmp-template/styles/uswds-functions';
@import '~@ghsc/disagg-d3/styles/disagg-d3.scss'; @import '@ghsc/disagg-d3/styles/disagg-d3.scss';
@import './code-block'; @import './code-block';
@import './data-table'; @import './data-table';
......
@use '@angular/material' as mat; @use '@angular/material' as mat;
@import '~@ghsc/nshmp-template/styles/material-theme'; @import '@ghsc/nshmp-template/styles/material-theme';
mat-card { mat-card {
padding: 0; padding: 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment