rename home.component.css as home.component.scss

pull/8492/head
mehmet-erim 5 years ago
parent 2a147a1832
commit ba007b3672

@ -701,7 +701,7 @@ import { TodoItemDto, TodoService } from '@proxy';
@Component({ @Component({
selector: 'app-home', selector: 'app-home',
templateUrl: './home.component.html', templateUrl: './home.component.html',
styleUrls: ['./home.component.css'] styleUrls: ['./home.component.scss']
}) })
export class HomeComponent implements OnInit { export class HomeComponent implements OnInit {
@ -772,9 +772,9 @@ Open the `/angular/src/app/home/home.component.html` file and replace its conten
</div> </div>
```` ````
### home.component.css ### home.component.scss
As the final touch, open the `/angular/src/app/home/home.component.css` file in the `Pages` and replace with the following content: As the final touch, open the `/angular/src/app/home/home.component.scss` file in the `Pages` and replace with the following content:
````css ````css
#TodoList{ #TodoList{

@ -5,7 +5,7 @@ import { OAuthService } from 'angular-oauth2-oidc';
@Component({ @Component({
selector: 'app-home', selector: 'app-home',
templateUrl: './home.component.html', templateUrl: './home.component.html',
styleUrls: ['./home.component.css'], styleUrls: ['./home.component.scss'],
}) })
export class HomeComponent { export class HomeComponent {
get hasLoggedIn(): boolean { get hasLoggedIn(): boolean {

Loading…
Cancel
Save