Merge commit '96e492bc5b946fe9763e386374349a123f8fe338'

This commit is contained in:
Alexa Amundson
2025-11-28 23:02:53 -06:00
4 changed files with 10 additions and 1 deletions

1
.astro/types.d.ts vendored Normal file
View File

@@ -0,0 +1 @@
/// <reference types="astro/client" />

1
.gitignore vendored
View File

@@ -88,3 +88,4 @@ node_modules
.DS_Store .DS_Store
npm-debug.log* npm-debug.log*
dist dist
package-lock.json

View File

@@ -7,7 +7,7 @@
<section class="beacon-card"> <section class="beacon-card">
<div class="beacon-card__header"> <div class="beacon-card__header">
<h2>Beacon Pings</h2> <h2>Beacon Pings</h2>
<p>Append-only status pulses across environments.</p> <p class="hint">Append-only status pulses across environments.</p>
</div> </div>
<table> <table>
<thead> <thead>
@@ -60,6 +60,12 @@
margin: 0; margin: 0;
} }
.hint {
margin: 0;
color: #94a3b8;
max-width: 18rem;
}
table { table {
width: 100%; width: 100%;
border-collapse: collapse; border-collapse: collapse;

1
src/env.d.ts vendored Normal file
View File

@@ -0,0 +1 @@
/// <reference path="../.astro/types.d.ts" />