This commit is contained in:
2025-11-03 17:32:55 +01:00
parent 36012d4a92
commit 913320b970
7 changed files with 67 additions and 23 deletions

12
first-app/src/app/app.css Normal file
View File

@@ -0,0 +1,12 @@
:host {
--content-padding: 10px;
}
header {
display: block;
height: 60px;
padding: var(--content-padding);
box-shadow: 0px 5px 25px var(--shadow-color);
}
.content {
padding: var(--content-padding);
}

View File

@@ -2,8 +2,12 @@ import {Component} from '@angular/core';
@Component({
selector: 'app-root',
imports: [],
template: `
Welcome to Angular!
<h1>Hello world!</h1>
`,
styleUrls: ['./app.css'],
})
export class App {}
export class App {
title = 'homes';
}