From 16cc3a52a039ad5936f5ba386d2400a71d9011e5 Mon Sep 17 00:00:00 2001 From: Tara Wilson Date: Sat, 3 May 2025 13:13:23 -0400 Subject: [PATCH] Fixing footer margin --- source/src/app/info/info.component.html | 200 ++++++++++++------------ source/src/app/info/info.component.ts | 5 +- 2 files changed, 104 insertions(+), 101 deletions(-) diff --git a/source/src/app/info/info.component.html b/source/src/app/info/info.component.html index 65ad195..73e0aaa 100644 --- a/source/src/app/info/info.component.html +++ b/source/src/app/info/info.component.html @@ -1,99 +1,101 @@ - - - \ No newline at end of file +
+ + + +
\ No newline at end of file diff --git a/source/src/app/info/info.component.ts b/source/src/app/info/info.component.ts index 8643a96..a0fa284 100644 --- a/source/src/app/info/info.component.ts +++ b/source/src/app/info/info.component.ts @@ -1,4 +1,5 @@ -import { Component } from '@angular/core'; +import {Component, inject} from '@angular/core'; +import {MobileService} from '../mobile.service'; @Component({ selector: 'app-info', @@ -7,5 +8,5 @@ import { Component } from '@angular/core'; styleUrl: './info.component.scss' }) export class InfoComponent { - + public mobileService = inject(MobileService); }