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,4 +1,5 @@
<article class="center mw5 mw6-ns hidden ba mv4"> <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> <h1 class="f4 bg-near-black white mv0 pv2 ph3">General Troop Information</h1>
<div class="pa3 bt bg-light-blue"> <div class="pa3 bt bg-light-blue">
<p class="f6 f5-ns lh-copy measure mv0"> <p class="f6 f5-ns lh-copy measure mv0">
@ -9,8 +10,8 @@
</a> </a>
</p> </p>
</div> </div>
</article> </article>
<article class="center mw5 mw6-ns hidden ba mv4"> <article class="center mw5 mw6-ns hidden ba mv4">
<h1 class="f4 bg-near-black white mv0 pv2 ph3">Summer Camp 2025</h1> <h1 class="f4 bg-near-black white mv0 pv2 ph3">Summer Camp 2025</h1>
<div class="pa3 bt bg-light-blue"> <div class="pa3 bt bg-light-blue">
<p class="f6 f5-ns lh-copy measure mv0"> <p class="f6 f5-ns lh-copy measure mv0">
@ -35,8 +36,8 @@
</a> </a>
</p> </p>
</div> </div>
</article> </article>
<article class="center mw5 mw6-ns hidden ba mv4"> <article class="center mw5 mw6-ns hidden ba mv4">
<h1 class="f4 bg-near-black white mv0 pv2 ph3">Upcoming Events</h1> <h1 class="f4 bg-near-black white mv0 pv2 ph3">Upcoming Events</h1>
<div class="pa3 bt bg-light-blue"> <div class="pa3 bt bg-light-blue">
<p class="f6 f5-ns lh-copy measure mv0"> <p class="f6 f5-ns lh-copy measure mv0">
@ -96,4 +97,5 @@
</a> </a>
</p> </p>
</div> </div>
</article> </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({ @Component({
selector: 'app-info', selector: 'app-info',
@ -7,5 +8,5 @@ import { Component } from '@angular/core';
styleUrl: './info.component.scss' styleUrl: './info.component.scss'
}) })
export class InfoComponent { export class InfoComponent {
public mobileService = inject(MobileService);
} }