Skip to content

Commit 8d20d63

Browse files
feat: logo.
1 parent cfad74a commit 8d20d63

3 files changed

Lines changed: 24 additions & 1 deletion

File tree

src/index.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,14 @@ <h1>
1616
href="https://github.com/knightedcodemonkey/develop"
1717
target="_blank"
1818
rel="noreferrer"
19-
>@knighted/develop</a
19+
><img
20+
class="brand-logo"
21+
src="logo.svg"
22+
alt=""
23+
aria-hidden="true"
24+
width="24"
25+
height="24"
26+
/><span class="brand-text">@knighted/develop</span></a
2027
>
2128
</h1>
2229
<p>Compiler-as-a-Service (at the edge of your browser).</p>

src/logo.svg

Lines changed: 1 addition & 0 deletions
Loading

src/styles/layout-shell.css

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,25 @@
1717
}
1818

1919
.brand-link {
20+
display: inline-flex;
21+
align-items: center;
22+
gap: 10px;
2023
color: inherit;
2124
text-decoration: none;
2225
}
2326

27+
.brand-logo {
28+
display: block;
29+
width: 24px;
30+
height: 24px;
31+
border-radius: 6px;
32+
flex: none;
33+
}
34+
35+
.brand-text {
36+
line-height: 1;
37+
}
38+
2439
.brand-link:hover {
2540
text-decoration: underline;
2641
}

0 commit comments

Comments
 (0)