Pool module refactor
This commit is contained in:
parent
ea73b94e24
commit
c266c7602b
12 changed files with 50 additions and 22 deletions
7
src/modules/pool/components/layout/layout.component.html
Normal file
7
src/modules/pool/components/layout/layout.component.html
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<div id="nav">
|
||||
<img src="../../assets/images/logo.png" alt="TFTPaths">
|
||||
</div>
|
||||
<app-home></app-home>
|
||||
<div id="footer">
|
||||
|
||||
</div>
|
||||
11
src/modules/pool/components/layout/layout.component.scss
Normal file
11
src/modules/pool/components/layout/layout.component.scss
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#nav {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#footer {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
color: white;
|
||||
padding: 2% 0 2% 0;
|
||||
}
|
||||
15
src/modules/pool/components/layout/layout.component.ts
Normal file
15
src/modules/pool/components/layout/layout.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-layout',
|
||||
templateUrl: './layout.component.html',
|
||||
styleUrls: ['./layout.component.scss']
|
||||
})
|
||||
export class LayoutComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue