diff options
author | 2022-07-08 02:01:00 -0600 | |
---|---|---|
committer | 2022-07-08 09:01:00 +0100 | |
commit | a6528fe5760bbff3b3d4682008d55ee1d983eec9 (patch) | |
tree | 0d568f0ace949167239daee0d0a6ad628f601886 /web/source/css | |
parent | [bugfix] Allow instance titles to wrap (#695) (diff) | |
download | gotosocial-a6528fe5760bbff3b3d4682008d55ee1d983eec9.tar.xz |
[bugfix] Various fixes (#699)
* [bugfix] Correctly style inputs and buttons
<input>, <textarea>, and <button> were incorrectly using the system-ui font previously; this commit fixes that. text-align: center; was added to <button> due to an inconsistency with .button where text-align would be off.
* [chore] Update binary installation instructions
This commit updates the example release mentioned in the docs, and mentions Caddy in the reverse proxy options.
* [bugfix] Remove redundant Caddyfile
Caddy automatically upgrades HTTP to HTTPS (see https://caddyserver.com/docs/automatic-https) so the upgrading part of the Caddyfile is redundant.
Diffstat (limited to 'web/source/css')
-rw-r--r-- | web/source/css/base.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/web/source/css/base.css b/web/source/css/base.css index 163eaf7b1..66dd8b838 100644 --- a/web/source/css/base.css +++ b/web/source/css/base.css @@ -145,6 +145,8 @@ main { padding: 0.5rem; border: none; cursor: pointer; + text-align: center; + font-family: 'Noto Sans', sans-serif; &:hover { background: $button_hover_bg; @@ -245,6 +247,7 @@ input, select, textarea { color: $fg; background: $bg; width: 100%; + font-family: 'Noto Sans', sans-serif; } footer { |