summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Kosarek <matt.kosarek@canonical.com>2026-04-29 08:01:06 -0400
committerMatt Kosarek <matt.kosarek@canonical.com>2026-04-29 08:01:06 -0400
commit1f3d746b2305cdfead10ba58da8e3cd2ea16e2e5 (patch)
treec7033488863ddee1bd496e4452606200b37b692a
parentcae601b0fe048add790fa3b4341d76c973f14b2b (diff)
Minor layout fixesHEADmaster
-rw-r--r--src/pages/index.astro20
-rw-r--r--src/styles/index.css6
2 files changed, 15 insertions, 11 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 5f7e321..d6e47c5 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -5,16 +5,6 @@ import OpenMoji from '../components/OpenMoji.astro';
<BaseLayout title="Matthew Kosarek" description="The personal website of Matthew Kosarek">
<div class="index-layout">
- <aside class="sidebar">
- <ul>
- <li><a href="https://github.com/mattkae">Github</a><span>my personal github with most of my projects</span></li>
- <li><a href="https://git.matthewkosarek.xyz">CGit</a><span>my self-hosted git instance with a few of my projects</span></li>
- <li style="display: none;"><a href="https://physicsforgames.com">physicsforgames.com</a><span>a project that I'm currently working on in my spare time where I explore the world of realtime physics</span></li>
- <li><a href="https://www.linkedin.com/in/matthew-kosarek/">LinkedIn</a><span>corporate goings-ons</span></li>
- <li><a href="mailto:matthew@matthewkosarek.xyz">Email</a><span>matthew@matthewkosarek.xyz</span></li>
- </ul>
- </aside>
-
<div class="index-main">
<section>
<p>
@@ -36,5 +26,15 @@ import OpenMoji from '../components/OpenMoji.astro';
</p>
</section>
</div>
+
+ <aside class="sidebar">
+ <ul>
+ <li><a href="https://github.com/mattkae">Github</a><span>my personal github with most of my projects</span></li>
+ <li><a href="https://git.matthewkosarek.xyz">CGit</a><span>my self-hosted git instance with a few of my projects</span></li>
+ <li style="display: none;"><a href="https://physicsforgames.com">physicsforgames.com</a><span>a project that I'm currently working on in my spare time where I explore the world of realtime physics</span></li>
+ <li><a href="https://www.linkedin.com/in/matthew-kosarek/">LinkedIn</a><span>corporate goings-ons</span></li>
+ <li><a href="mailto:matthew@matthewkosarek.xyz">Email</a><span>matthew@matthewkosarek.xyz</span></li>
+ </ul>
+ </aside>
</div>
</BaseLayout>
diff --git a/src/styles/index.css b/src/styles/index.css
index 70c0f1b..8f9901a 100644
--- a/src/styles/index.css
+++ b/src/styles/index.css
@@ -355,11 +355,15 @@ only screen and (max-width:960px) {
top: calc(50% - 4rem);
}
+ body {
+ margin-top: 4rem;
+ }
+
#hamburger {
display: block;
position: fixed;
top: 0.5rem;
- right: 5rem;
+ right: 2rem;
z-index: 1002;
padding: 0.5rem;
}