Skip to content

Commit bee7ea6

Browse files
committed
css -> scss
1 parent e597f67 commit bee7ea6

18 files changed

+14
-11
lines changed

angular.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
"projectType": "application",
88
"schematics": {
99
"@schematics/angular:component": {
10-
"standalone": false
10+
"standalone": false,
11+
"inlineTemplate": false,
12+
"inlineStyle": false,
13+
"style": "scss"
1114
},
1215
"@schematics/angular:directive": {
1316
"standalone": false
@@ -35,7 +38,7 @@
3538
"src/assets"
3639
],
3740
"styles": [
38-
"src/styles.css"
41+
"src/styles.scss"
3942
],
4043
"scripts": []
4144
},
@@ -94,7 +97,7 @@
9497
"src/assets"
9598
],
9699
"styles": [
97-
"src/styles.css"
100+
"src/styles.scss"
98101
],
99102
"scripts": []
100103
}

src/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { Component } from '@angular/core';
1717
@Component({
1818
selector: 'app-root',
1919
templateUrl: './app.component.html',
20-
styleUrl: './app.component.css',
20+
styleUrl: './app.component.scss',
2121
})
2222
export class AppComponent {
2323
}

src/app/db-panel/db-panel.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { HelpfulLabelComponent } from '../helpful-label/helpful-label.component'
99
standalone: true,
1010
imports: [HelpfulLabelComponent],
1111
templateUrl: './db-panel.component.html',
12-
styleUrl: './db-panel.component.css'
12+
styleUrl: './db-panel.component.scss'
1313
})
1414
export class DbPanelComponent {
1515

File renamed without changes.

src/app/db-schema/db-schema.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { HelpfulLabelComponent } from '../helpful-label/helpful-label.component'
88
standalone: true,
99
imports: [HelpfulLabelComponent],
1010
templateUrl: './db-schema.component.html',
11-
styleUrl: './db-schema.component.css'
11+
styleUrl: './db-schema.component.scss'
1212
})
1313
export class DbSchemaComponent {
1414

src/app/db-table/db-table.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { Component } from '@angular/core';
1818
selector: 'app-dbtable',
1919
standalone: true,
2020
templateUrl: './db-table.component.html',
21-
styleUrl: './db-table.component.css',
21+
styleUrl: './db-table.component.scss',
2222
})
2323
export class DbTableComponent {
2424

File renamed without changes.

0 commit comments

Comments
 (0)