From fe61360983f6738d9a749d4fea239a06db2fb3a9 Mon Sep 17 00:00:00 2001 From: ozpv <39195175+ozpv@users.noreply.github.com> Date: Sat, 30 May 2026 15:43:20 -0500 Subject: clip overflow and fix mobile view --- public/blog/how-to-setup-a-git-server-and-cgit.html | 2 +- public/index.html | 2 +- public/site.css | 10 ++++++++++ 3 files changed, 12 insertions(+), 2 deletions(-) (limited to 'public') diff --git a/public/blog/how-to-setup-a-git-server-and-cgit.html b/public/blog/how-to-setup-a-git-server-and-cgit.html index d54beda..871690d 100644 --- a/public/blog/how-to-setup-a-git-server-and-cgit.html +++ b/public/blog/how-to-setup-a-git-server-and-cgit.html @@ -3,7 +3,7 @@
-
+

How to Self-Host a Git Server

This guide is a modified version of the git book instructions for Debian specifically.
It also includes setting up a cgit web front-end that allows you to view your git repositories conveniently on the web just like I do.

diff --git a/public/index.html b/public/index.html index 2b46caa..3093c59 100644 --- a/public/index.html +++ b/public/index.html @@ -4,7 +4,7 @@

Electrical Engineer

-
+

You might be here because you were tricked! However, I refuse to scam you like instagram grifters with similar bios will.

My blog contains tutorials on various electrical engineering topics like signal processing and also other tech things.

Listen to my music. The majority of streaming services should be linked.

diff --git a/public/site.css b/public/site.css index d760537..d8ec7ba 100644 --- a/public/site.css +++ b/public/site.css @@ -32,6 +32,16 @@ pre { border-radius: 4px; } + +.width { + max-width: 720px; + + @media (width <= 720px) { + overflow: clip; + max-width: 90vw; + } +} + .center { display: flex; align-items: center; -- cgit v1.2.3