aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-23 22:52:52 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-23 22:52:52 +0800
commit1872da79b977667ee01da1de1980384c7fe77dcc (patch)
tree72a37aa63157a70c973a2af7958183d9873c6719
parenttmpl.go: Message should go after the submit button (diff)
downloadpowxy-1872da79b977667ee01da1de1980384c7fe77dcc.tar.gz
powxy-1872da79b977667ee01da1de1980384c7fe77dcc.tar.zst
powxy-1872da79b977667ee01da1de1980384c7fe77dcc.zip
tmpl.go: A few more styling improvementsv0.1.4
-rw-r--r--tmpl.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmpl.go b/tmpl.go
index 4910c7f..0936771 100644
--- a/tmpl.go
+++ b/tmpl.go
@@ -81,7 +81,6 @@ func init() {
h1 {
margin-top: 0;
- color: var(--primary-color);
}
p, summary {
@@ -98,6 +97,7 @@ func init() {
font-family: monospace;
font-size: 1rem;
background-color: var(--lighter-box-background-color);
+ color: var(--text-color);
width: 100%;
padding: 0.5rem;
border-radius: var(--radius-1);
@@ -132,6 +132,7 @@ func init() {
pre {
overflow-x: auto;
+ display: block;
white-space: pre-wrap;
word-break: break-word;
}