From a51371b3fc4e595edf588212dc36558fe0f8403d Mon Sep 17 00:00:00 2001 From: swag Date: Wed, 14 Jun 2023 11:38:04 -0400 Subject: [PATCH 1/3] Fix images overflowing --- assets/css/elements.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/assets/css/elements.css b/assets/css/elements.css index abb3fdc..a9a3a99 100644 --- a/assets/css/elements.css +++ b/assets/css/elements.css @@ -47,3 +47,5 @@ pre > code { } a:hover { cursor: url('/cursors/finger.cur'), auto; } + +img { max-width: 100%; } From e85fa3bb42e62b2f6d726c67636e1614559855b9 Mon Sep 17 00:00:00 2001 From: swag Date: Wed, 14 Jun 2023 12:32:24 -0400 Subject: [PATCH 2/3] Whoopsie --- LICENSE | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index 0ad25db..c969d91 100644 --- a/LICENSE +++ b/LICENSE @@ -629,8 +629,8 @@ to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - - Copyright (C) + Post::Text, a textboard written in Perl + Copyright (C) 2023 Daniel E Bowling This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published From 6b76dee51c34ce3969d692d39bc10487005d76b2 Mon Sep 17 00:00:00 2001 From: swag Date: Wed, 14 Jun 2023 12:58:40 -0400 Subject: [PATCH 3/3] smol style tweak --- assets/css/elements.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/assets/css/elements.css b/assets/css/elements.css index a9a3a99..19ad59c 100644 --- a/assets/css/elements.css +++ b/assets/css/elements.css @@ -49,3 +49,8 @@ pre > code { a:hover { cursor: url('/cursors/finger.cur'), auto; } img { max-width: 100%; } + +blockquote { + border-left: solid black; + padding-left: 0.25em; +}