Fixing footer margin
All checks were successful
Build / Build (push) Successful in 13s
Publish Docker Image / Build UI Artifact (release) Successful in 15s
Publish Docker Image / Publish Docker Image (release) Successful in 23s

This commit is contained in:
Tara Wilson 2025-05-03 13:13:23 -04:00
parent 77e3dda1c5
commit 16cc3a52a0
2 changed files with 104 additions and 101 deletions

View File

@ -1,3 +1,4 @@
<div [class]="{'': !mobileService.isMobile(), 'mb5': mobileService.isMobile()}">
<article class="center mw5 mw6-ns hidden ba mv4">
<h1 class="f4 bg-near-black white mv0 pv2 ph3">General Troop Information</h1>
<div class="pa3 bt bg-light-blue">
@ -97,3 +98,4 @@
</p>
</div>
</article>
</div>

View File

@ -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);
}