Welcome to Angular of Legends, a clone of League of Legends Client made by Ivin Rodrigues
+ My Github + +Welcome to first patch of the project.
\ No newline at end of file diff --git a/src/app/modules/client/home/patch-notes/patch-notes.component.scss b/src/app/modules/client/home/patch-notes/patch-notes.component.scss new file mode 100644 index 0000000..7d1a099 --- /dev/null +++ b/src/app/modules/client/home/patch-notes/patch-notes.component.scss @@ -0,0 +1,30 @@ +.patch-note-title { + + color: #f0e6d2; + font-size: 2rem; + text-transform: uppercase; + font-weight: bold; + letter-spacing: 1px; + display: block; + margin-top: 2rem; + +} + +.patch-note-author { + + margin-top: 1rem; + color: #938f83; + text-transform: uppercase; + display: block; + +} + +.patch-note-text { + + margin: 2rem; + font-size: 1.2rem; + color: #f0e6d2; + letter-spacing: 1px; + display: block; + +} \ No newline at end of file diff --git a/src/app/modules/client/home/patch-notes/patch-notes.component.spec.ts b/src/app/modules/client/home/patch-notes/patch-notes.component.spec.ts new file mode 100644 index 0000000..721691d --- /dev/null +++ b/src/app/modules/client/home/patch-notes/patch-notes.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { PatchNotesComponent } from './patch-notes.component'; + +describe('PatchNotesComponent', () => { + let component: PatchNotesComponent; + let fixture: ComponentFixture