Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
17 changes: 14 additions & 3 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,23 @@ body {
left: 0;
z-index: 50;
display: flex;
justify-content: flex-end;
justify-content: space-between;
align-items: center;
padding: 4px 12px;
pointer-events: none;
}

.app-footer-docs {
font-size: 11px;
color: var(--text-secondary);
text-decoration: none;
}

.app-footer-docs:hover {
color: var(--text-primary);
text-decoration: underline;
}
Comment on lines +93 to +96

.app-footer > * {
pointer-events: auto;
}
Expand All @@ -95,7 +106,7 @@ body {
border: 1px solid hsl(var(--border) / 0.7);
border-radius: 999px;
background: hsl(var(--background) / 0.8);
color: hsl(var(--muted-foreground));
color: var(--text-secondary);
padding: 4px 8px;
font-size: 10px;
line-height: 1;
Expand All @@ -105,7 +116,7 @@ body {

.edb-status-indicator:hover,
.edb-status-indicator:focus-visible {
color: hsl(var(--foreground));
color: var(--text-primary);
border-color: hsl(var(--primary) / 0.45);
background: hsl(var(--accent) / 0.55);
}
Expand Down
10 changes: 9 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,16 @@ function App() {
</div>
)}

{/* Global footer — EDB status at far right */}
{/* Global footer — docs at far left, EDB status at far right */}
<footer className="app-footer">
<a
className="app-footer-docs"
href="https://hexdocs.thally.app"
target="_blank"
rel="noreferrer"
>
Comment on lines +183 to +188
Documentation
</a>
<EdbBridgeStatus />
</footer>

Expand Down