From 60358d32d637ee0722584e0ceca39d7d3bf34ef6 Mon Sep 17 00:00:00 2001 From: nin0dev Date: Fri, 14 Mar 2025 23:23:27 -0400 Subject: [PATCH] various insanities --- info/contacts/discord.md | 4 ---- info/contacts/pgp.md | 6 ------ src/components/ButtonCollection.astro | 5 +++-- src/components/MainWindow.astro | 4 ++-- src/components/Me.astro | 2 +- src/components/Window.astro | 6 +++++- 6 files changed, 11 insertions(+), 16 deletions(-) delete mode 100644 info/contacts/discord.md delete mode 100644 info/contacts/pgp.md diff --git a/info/contacts/discord.md b/info/contacts/discord.md deleted file mode 100644 index 91dac3b..0000000 --- a/info/contacts/discord.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -platform: "Discord" -name: "nin0.dev" ---- \ No newline at end of file diff --git a/info/contacts/pgp.md b/info/contacts/pgp.md deleted file mode 100644 index f64e89f..0000000 --- a/info/contacts/pgp.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -platform: "PGP key" -name: "here" -url: "/pgp" -note: "Used across commits or other signed messages. Any key of mine on a keyserver is outdated." ---- \ No newline at end of file diff --git a/src/components/ButtonCollection.astro b/src/components/ButtonCollection.astro index b7f516d..479cfdf 100644 --- a/src/components/ButtonCollection.astro +++ b/src/components/ButtonCollection.astro @@ -1,8 +1,9 @@
diff --git a/src/components/MainWindow.astro b/src/components/MainWindow.astro index 3f88037..8d2a108 100644 --- a/src/components/MainWindow.astro +++ b/src/components/MainWindow.astro @@ -13,9 +13,9 @@ import Spacer from "./Spacer.astro";

- I'm a Canadian self-taught software developer that makes things some people find useful in Python, HTML, JavaScript, and Kotlin. + I'm a Canadian self-taught software developer.
- I occasionally code with Java or C#, and am currently learning Rust. + I also make things that some people use with varying degrees of usefulness.

diff --git a/src/components/Me.astro b/src/components/Me.astro index 1a0a741..6652460 100644 --- a/src/components/Me.astro +++ b/src/components/Me.astro @@ -41,5 +41,5 @@ const statusColor = () => {
the nin0dev logo -

nin0dev (he/him)

+

nin0 (he/him)

\ No newline at end of file diff --git a/src/components/Window.astro b/src/components/Window.astro index b959a74..9e893fd 100644 --- a/src/components/Window.astro +++ b/src/components/Window.astro @@ -12,7 +12,11 @@ const {title, showClose, maxWidth} = Astro.props } @media (pointer:coarse) { .window { - margin-right: 20px; + position: absolute; + top: 0px; + left: 0px; + margin: 5%; + width: 90%; } }