Skip to content

Commit

Permalink
update search layout
Browse files Browse the repository at this point in the history
  • Loading branch information
activatedgeek committed Dec 9, 2024
1 parent 8e8b1a6 commit dc2c4cd
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/Html.astro
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const {
<slot name="head" />
</head>
<body>
<Header area={area} />
<Header />
<slot />
<Footer />
</body>
Expand Down
2 changes: 1 addition & 1 deletion src/content/thoughts/202412022120.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
date: Dec 2 2024, 21:20 -0500
---

I think all *good* barbers are *good* conversationalists.
I think all _good_ barbers are _good_ conversationalists.
4 changes: 2 additions & 2 deletions src/content/thoughts/202412022219.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
date: Dec 2 2024, 22:19 -0500
---

Introductory paragraphs of some research papers start with starry-eyed vision for a world where the proposed method would be useful.
In practice, however, the *problems* a method solves for turn out to be largely irrelevant.
Introductory paragraphs of some research papers start with starry-eyed vision for a world where the proposed method would be useful.
In practice, however, the _problems_ a method solves for turn out to be largely irrelevant.
This is the [angel dust](https://en.wikipedia.org/wiki/Angel_dusting) of research.
13 changes: 12 additions & 1 deletion src/pages/search.astro
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ export const prerender = true;
align-items: center;
flex-direction: column;
}

main > hr {
margin: var(--pico-spacing) 0;
width: 100vw;
position: relative;
left: calc(-50vw + 50%);
}
</style>

<Html frontmatter={frontmatter}>
Expand All @@ -42,8 +49,12 @@ export const prerender = true;
</script>
<main>
<section>
<h1 style="--pico-font-size: 2.5rem;">Search</h1>
<h1 style="--pico-font-size: 2.5rem; text-align: center;">Search</h1>
</section>
<hr />
<section>
<div id="search"></div>
</section>
<hr />
</main>
</Html>

0 comments on commit dc2c4cd

Please sign in to comment.