add github link to popup

This commit is contained in:
Pas 2025-11-07 19:29:10 -07:00
parent 27615ac512
commit 543bd8b0c2
2 changed files with 14 additions and 0 deletions

View file

@ -18,6 +18,16 @@
font-size: 14px;
}
.github-link {
color: #4A4863;
text-decoration: none;
transition: opacity 0.2s ease;
}
.github-link:hover {
text-decoration: underline;
}
.dot {
width: 3px;
height: 3px;

View file

@ -9,6 +9,10 @@ export function BottomLabel() {
{version}
<div className="dot" />
P-Stream
<div className="dot" />
<a href="https://github.com/p-stream/extension" target="_blank" rel="noopener noreferrer" className="github-link">
Github
</a>
</h3>
);
}