Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions site/css/sentinel.css
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@ nav ul {
align-items: center;
flex-wrap: wrap;
gap: var(--spacing-md);
padding: 0;
}

nav li {
Expand Down
2 changes: 1 addition & 1 deletion site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<button class="mobile-menu-toggle" aria-label="Toggle navigation menu" aria-expanded="false" id="mobileMenuToggle">
</button>
<ul style="list-style:none; padding:0; display:flex; justify-content:center; gap:30px; flex-wrap:wrap;" id="mainNav">
<ul style="list-style:none; padding:0;" id="mainNav">
Copy link

Copilot AI Feb 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The inline styles list-style:none; padding:0; are now redundant since the CSS rule nav ul (sentinel.css:303-311) already defines both list-style: none and padding: 0. These inline styles can be completely removed from all ul elements in the nav.

Suggested change
<ul style="list-style:none; padding:0;" id="mainNav">
<ul id="mainNav">

Copilot uses AI. Check for mistakes.
<li><a href="index.html" style="color:#00ffff;" aria-current="page">Home</a></li>
<li><a href="solutions-payers.html" style="color:#888;">Solutions</a></li>
<li><a href="pricing.html" style="color:#888;">Pricing</a></li>
Expand Down
2 changes: 1 addition & 1 deletion site/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
<a href="#main-content" class="skip-to-main">Skip to main content</a>

<nav style="margin-bottom:20px;">
<ul style="list-style:none; padding:0; display:flex; justify-content:center; gap:30px; flex-wrap:wrap;">
<ul style="list-style:none; padding:0;">
Copy link

Copilot AI Feb 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The inline styles list-style:none; padding:0; are now redundant since the CSS rule nav ul (sentinel.css:303-311) already defines both list-style: none and padding: 0. These inline styles can be completely removed from all ul elements in the nav.

Suggested change
<ul style="list-style:none; padding:0;">
<ul>

Copilot uses AI. Check for mistakes.
<li><a href="index.html" style="color:#888;">Home</a></li>
<li><a href="solutions-payers.html" style="color:#888;">For Payers</a></li>
<li><a href="solutions-providers.html" style="color:#888;">For Providers</a></li>
Expand Down
2 changes: 1 addition & 1 deletion site/platform.html
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
<button class="mobile-menu-toggle" aria-label="Toggle navigation menu" aria-expanded="false" id="mobileMenuToggle">
</button>
<ul style="list-style:none; padding:0; display:flex; justify-content:center; gap:30px; flex-wrap:wrap;" id="platformNav">
<ul style="list-style:none; padding:0;" id="platformNav">
Copy link

Copilot AI Feb 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The mobile navigation JavaScript (mobile-nav.js) looks for an element with id="mainNav", but this page uses id="platformNav". This means the mobile menu toggle button will not function on this page. Either rename this ID to "mainNav" to match the other pages, or update mobile-nav.js to handle multiple nav IDs.

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Feb 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The inline styles list-style:none; padding:0; are now redundant since the CSS rule nav ul (sentinel.css:303-311) already defines both list-style: none and padding: 0. These inline styles can be completely removed from all ul elements in the nav.

Suggested change
<ul style="list-style:none; padding:0;" id="platformNav">
<ul id="platformNav">

Copilot uses AI. Check for mistakes.
<li><a href="index.html" style="color:#888;">Home</a></li>
<li><a href="solutions-payers.html" style="color:#888;">Solutions</a></li>
<li><a href="pricing.html" style="color:#888;">Pricing</a></li>
Expand Down
2 changes: 1 addition & 1 deletion site/pricing.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<button class="mobile-menu-toggle" aria-label="Toggle navigation menu" aria-expanded="false" id="mobileMenuToggle">
</button>
<ul style="list-style:none; padding:0; display:flex; justify-content:center; gap:30px; flex-wrap:wrap;" id="mainNav">
<ul style="list-style:none; padding:0;" id="mainNav">
Copy link

Copilot AI Feb 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The inline styles list-style:none; padding:0; are now redundant since the CSS rule nav ul (sentinel.css:303-311) already defines both list-style: none and padding: 0. These inline styles can be completely removed from all ul elements in the nav.

Suggested change
<ul style="list-style:none; padding:0;" id="mainNav">
<ul id="mainNav">

Copilot uses AI. Check for mistakes.
<li><a href="index.html" style="color:#888;">Home</a></li>
<li><a href="solutions-payers.html" style="color:#888;">Solutions</a></li>
<li><a href="pricing.html" style="color:#00ffff;" aria-current="page">Pricing</a></li>
Expand Down
2 changes: 1 addition & 1 deletion site/solutions-payers.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<button class="mobile-menu-toggle" aria-label="Toggle navigation menu" aria-expanded="false" id="mobileMenuToggle">
</button>
<ul style="list-style:none; padding:0; display:flex; justify-content:center; gap:30px; flex-wrap:wrap;" id="mainNav">
<ul style="list-style:none; padding:0;" id="mainNav">
Copy link

Copilot AI Feb 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The inline styles list-style:none; padding:0; are now redundant since the CSS rule nav ul (sentinel.css:303-311) already defines both list-style: none and padding: 0. These inline styles can be completely removed from all ul elements in the nav.

Suggested change
<ul style="list-style:none; padding:0;" id="mainNav">
<ul id="mainNav">

Copilot uses AI. Check for mistakes.
<li><a href="index.html" style="color:#888;">Home</a></li>
<li><a href="solutions-payers.html" style="color:#00ffff;" aria-current="page">Solutions</a></li>
<li><a href="pricing.html" style="color:#888;">Pricing</a></li>
Expand Down
2 changes: 1 addition & 1 deletion site/solutions-providers.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<button class="mobile-menu-toggle" aria-label="Toggle navigation menu" aria-expanded="false" id="mobileMenuToggle">
</button>
<ul style="list-style:none; padding:0; display:flex; justify-content:center; gap:30px; flex-wrap:wrap;" id="mainNav">
<ul style="list-style:none; padding:0;" id="mainNav">
Copy link

Copilot AI Feb 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The inline styles list-style:none; padding:0; are now redundant since the CSS rule nav ul (sentinel.css:303-311) already defines both list-style: none and padding: 0. These inline styles can be completely removed from all ul elements in the nav.

Suggested change
<ul style="list-style:none; padding:0;" id="mainNav">
<ul id="mainNav">

Copilot uses AI. Check for mistakes.
<li><a href="index.html" style="color:#888;">Home</a></li>
<li><a href="solutions-payers.html" style="color:#888;">Solutions</a></li>
<li><a href="pricing.html" style="color:#888;">Pricing</a></li>
Expand Down
Loading