-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #252 from CivicActions/ul-nesting
Nest ul tags in li correctly
- Loading branch information
Showing
1 changed file
with
12 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,9 +68,11 @@ const ContractingPage = () => { | |
<ul className='body'> | ||
<li>CivicActions, Inc.</li> | ||
<li>GSA Schedule: GS-35F-337BA</li> | ||
<ul> | ||
<li>Professional Services, Health IT and Cloud</li> | ||
</ul> | ||
<li> | ||
<ul> | ||
<li>Professional Services, Health IT and Cloud</li> | ||
</ul> | ||
</li> | ||
<li>UEI: XSZFHRS5QFL5</li> | ||
<li>CAGE Code: 65FK1</li> | ||
<li>NAICS Codes: 541511, 541512, 541513, 541519</li> | ||
|
@@ -83,10 +85,12 @@ const ContractingPage = () => { | |
2003474 | ||
</li> | ||
<li>Canadian</li> | ||
<ul> | ||
<li>CivicActions Digital Service ULC (Canadian entity)</li> | ||
<li>Canadian POC: <a href="mailto:[email protected]">[email protected]</a></li> | ||
</ul> | ||
<li> | ||
<ul> | ||
<li>CivicActions Digital Service ULC (Canadian entity)</li> | ||
<li>Canadian POC: <a href="mailto:[email protected]">[email protected]</a></li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</div> | ||
<div className='differentiators list--wrapper'> | ||
|
@@ -169,4 +173,4 @@ export const Head = () => ( | |
title='Contracting information' | ||
description='We are a Small Business helping government agencies make digital services that build public trust. Learn about contracting with us.' | ||
/> | ||
); | ||
); |