Skip to content

Commit bee7ea6

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

18 files changed

+14
-11
lines changed

Diff for: angular.json

+6-3
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
}
File renamed without changes.

Diff for: src/app/app.component.ts

+1-1
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
}
File renamed without changes.

Diff for: src/app/db-panel/db-panel.component.ts

+1-1
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

Diff for: src/app/db-schema/db-schema.component.ts

+1-1
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

File renamed without changes.

Diff for: src/app/db-table/db-table.component.ts

+1-1
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

Diff for: src/app/div-console/div-console.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { UpperCasePipe, DatePipe } from '@angular/common';
2020
selector: 'app-div-console',
2121
standalone: true,
2222
templateUrl: './div-console.component.html',
23-
styleUrl: './div-console.component.css',
23+
styleUrl: './div-console.component.scss',
2424
imports: [UpperCasePipe, DatePipe],
2525
})
2626
export class DivConsoleComponent {

Diff for: src/app/gemini-response/gemini-response.component.ts

+1-1
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: './gemini-response.component.html',
11-
styleUrl: './gemini-response.component.css'
11+
styleUrl: './gemini-response.component.scss'
1212
})
1313
export class GeminiResponseComponent implements AfterViewChecked {
1414
protected scrollAnchor = viewChild.required<ElementRef<HTMLDivElement>>('scrollAnchor');

Diff for: src/app/helpful-label/helpful-label.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Component, Input } from '@angular/core';
55
standalone: true,
66
imports: [],
77
templateUrl: './helpful-label.component.html',
8-
styleUrl: './helpful-label.component.css',
8+
styleUrl: './helpful-label.component.scss',
99
})
1010
export class HelpfulLabelComponent {
1111
@Input()

Diff for: src/app/model-config/model-config.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { HelpfulLabelComponent } from '../helpful-label/helpful-label.component'
66
@Component({
77
selector: 'app-model-config',
88
templateUrl: './model-config.component.html',
9-
styleUrl: './model-config.component.css',
9+
styleUrl: './model-config.component.scss',
1010
standalone: true,
1111
imports: [HelpfulLabelComponent]
1212
})

Diff for: src/styles.css renamed to src/styles.scss

File renamed without changes.

0 commit comments

Comments
 (0)