Skip to content

Commit

Permalink
css -> scss
Browse files Browse the repository at this point in the history
  • Loading branch information
fredsa committed Jun 25, 2024
1 parent e597f67 commit bee7ea6
Show file tree
Hide file tree
Showing 18 changed files with 14 additions and 11 deletions.
9 changes: 6 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"standalone": false
"standalone": false,
"inlineTemplate": false,
"inlineStyle": false,
"style": "scss"
},
"@schematics/angular:directive": {
"standalone": false
Expand Down Expand Up @@ -35,7 +38,7 @@
"src/assets"
],
"styles": [
"src/styles.css"
"src/styles.scss"
],
"scripts": []
},
Expand Down Expand Up @@ -94,7 +97,7 @@
"src/assets"
],
"styles": [
"src/styles.css"
"src/styles.scss"
],
"scripts": []
}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrl: './app.component.css',
styleUrl: './app.component.scss',
})
export class AppComponent {
}
File renamed without changes.
2 changes: 1 addition & 1 deletion src/app/db-panel/db-panel.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { HelpfulLabelComponent } from '../helpful-label/helpful-label.component'
standalone: true,
imports: [HelpfulLabelComponent],
templateUrl: './db-panel.component.html',
styleUrl: './db-panel.component.css'
styleUrl: './db-panel.component.scss'
})
export class DbPanelComponent {

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/app/db-schema/db-schema.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { HelpfulLabelComponent } from '../helpful-label/helpful-label.component'
standalone: true,
imports: [HelpfulLabelComponent],
templateUrl: './db-schema.component.html',
styleUrl: './db-schema.component.css'
styleUrl: './db-schema.component.scss'
})
export class DbSchemaComponent {

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/app/db-table/db-table.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { Component } from '@angular/core';
selector: 'app-dbtable',
standalone: true,
templateUrl: './db-table.component.html',
styleUrl: './db-table.component.css',
styleUrl: './db-table.component.scss',
})
export class DbTableComponent {

Expand Down
2 changes: 1 addition & 1 deletion src/app/div-console/div-console.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { UpperCasePipe, DatePipe } from '@angular/common';
selector: 'app-div-console',
standalone: true,
templateUrl: './div-console.component.html',
styleUrl: './div-console.component.css',
styleUrl: './div-console.component.scss',
imports: [UpperCasePipe, DatePipe],
})
export class DivConsoleComponent {
Expand Down
2 changes: 1 addition & 1 deletion src/app/gemini-response/gemini-response.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { HelpfulLabelComponent } from '../helpful-label/helpful-label.component'
standalone: true,
imports: [HelpfulLabelComponent],
templateUrl: './gemini-response.component.html',
styleUrl: './gemini-response.component.css'
styleUrl: './gemini-response.component.scss'
})
export class GeminiResponseComponent implements AfterViewChecked {
protected scrollAnchor = viewChild.required<ElementRef<HTMLDivElement>>('scrollAnchor');
Expand Down
2 changes: 1 addition & 1 deletion src/app/helpful-label/helpful-label.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Component, Input } from '@angular/core';
standalone: true,
imports: [],
templateUrl: './helpful-label.component.html',
styleUrl: './helpful-label.component.css',
styleUrl: './helpful-label.component.scss',
})
export class HelpfulLabelComponent {
@Input()
Expand Down
2 changes: 1 addition & 1 deletion src/app/model-config/model-config.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { HelpfulLabelComponent } from '../helpful-label/helpful-label.component'
@Component({
selector: 'app-model-config',
templateUrl: './model-config.component.html',
styleUrl: './model-config.component.css',
styleUrl: './model-config.component.scss',
standalone: true,
imports: [HelpfulLabelComponent]
})
Expand Down
File renamed without changes.

0 comments on commit bee7ea6

Please sign in to comment.