Skip to content

Commit 2b83799

Browse files
committed
Fixes for private connections
1 parent 6d1b544 commit 2b83799

File tree

5 files changed

+583
-132
lines changed

5 files changed

+583
-132
lines changed

src/components/AppHeader.css

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,24 @@
7676
color: #00a5b8;
7777
border-bottom-color: #00a5b8;
7878
}
79+
80+
/* External link (right-aligned) */
81+
.app-header-external {
82+
margin-left: auto;
83+
display: flex;
84+
align-items: center;
85+
gap: 0.3rem;
86+
font-size: 0.8rem;
87+
font-weight: 500;
88+
color: #5a6a7a;
89+
text-decoration: none;
90+
transition: color 0.2s;
91+
}
92+
93+
.app-header-external:hover {
94+
color: #8a9ab0;
95+
}
96+
97+
.app-header-external .codicon {
98+
font-size: 12px;
99+
}

src/components/AppHeader.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,16 @@ export function AppHeader({ currentProduct, onNavigate }: AppHeaderProps) {
4141
</a>
4242
))}
4343
</nav>
44+
45+
<a
46+
href="https://eca.dev"
47+
className="app-header-external"
48+
target="_blank"
49+
rel="noopener noreferrer"
50+
>
51+
eca.dev
52+
<i className="codicon codicon-link-external" />
53+
</a>
4454
</header>
4555
);
4656
}

0 commit comments

Comments
 (0)