mirror of
https://github.com/a-mayb3/KanbanCloneAngular.git
synced 2026-03-21 18:05:38 +01:00
Basic footer component. TODO: finish footer component
This commit is contained in:
parent
4e5be55079
commit
3ee36a2e89
3 changed files with 26 additions and 0 deletions
12
src/app/components/footer/footer.component.css
Normal file
12
src/app/components/footer/footer.component.css
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
.footer {
|
||||||
|
padding: 24px 16px;
|
||||||
|
text-align: center;
|
||||||
|
color: #6b7280;
|
||||||
|
background-color: #f5f7fa;
|
||||||
|
border-top: 1px solid #e5e7eb;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer p {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
3
src/app/components/footer/footer.component.html
Normal file
3
src/app/components/footer/footer.component.html
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
<footer class="footer">
|
||||||
|
<p>KanbanCloneAngular</p>
|
||||||
|
</footer>
|
||||||
11
src/app/components/footer/footer.component.ts
Normal file
11
src/app/components/footer/footer.component.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
import { Component } from '@angular/core';
|
||||||
|
import { CommonModule } from '@angular/common';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-footer',
|
||||||
|
standalone: true,
|
||||||
|
imports: [CommonModule],
|
||||||
|
templateUrl: './footer.component.html',
|
||||||
|
styleUrl: './footer.component.css'
|
||||||
|
})
|
||||||
|
export class FooterComponent {}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue