Skip to content

Commit 6b966ad

Browse files
committed
link to the garden, and adjust header layout so there's more room for that link
1 parent c5e5d96 commit 6b966ad

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

in/static/stylin.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,12 @@ header h1, header h1 a {
236236
overflow-wrap: normal !important;
237237
}
238238

239+
header .vert {
240+
display: flex;
241+
flex-direction: column;
242+
}
243+
239244
header nav {
240-
margin-left: auto;
241245
display: flex;
242246
gap: 0.5ch;
243247
}
@@ -353,7 +357,7 @@ article.photopage table td {
353357
}
354358

355359
header h1, header h1 a {
356-
font-size: min(8vw, 1.4em);
360+
font-size: min(8vw, 1.3em);
357361
display: block;
358362
max-width: 1px;
359363
}

src/templates.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export function Page2(props: Page2Props = {}, ...body: t.Tag[]): t.Showable {
3939
const head = [
4040
...ogTags,
4141
<meta name="viewport" content="width=device-width, initial-scale=1" />,
42-
<link rel="stylesheet" type="text/css" href="/stylin.css?cbust=7" />,
42+
<link rel="stylesheet" type="text/css" href="/stylin.css?cbust=8" />,
4343
<link rel="stylesheet" type="text/css" href="/rotator.css" />,
4444
<link rel="alternate" type="application/rss+xml" href="/feed.xml" />,
4545
<link rel="icon" type="image/x-icon" href="/favicon.ico" />,
@@ -69,13 +69,16 @@ export function Layout2(props: Page2Props = {}, ...body: t.Tag[]): t.Showable {
6969
<div class="cover s4"></div>
7070
<div class="iris"></div>
7171
</a>
72+
<div class="vert">
7273
<h1>
7374
<a href="/">Highly Suspect Agency</a>
7475
</h1>
7576
<nav>
77+
<a href="https://notes.highlysuspect.agency/">Garden</a>
7678
<a href="/photos/">Photos</a>
7779
<a href="/feed.xml">RSS</a>
7880
</nav>
81+
</div>
7982
</header>
8083
{...body}
8184
</Page2>

0 commit comments

Comments
 (0)