From b781b3402901a634a9785f7bebb851aa9a47596f Mon Sep 17 00:00:00 2001 From: jaina heartles Date: Sat, 10 Dec 2022 02:45:16 -0800 Subject: [PATCH] style and typo fixes --- src/main/controllers/web/signup.tmpl.html | 4 ++-- static/site.css | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/main/controllers/web/signup.tmpl.html b/src/main/controllers/web/signup.tmpl.html index 9387bd6..e8f1f7a 100644 --- a/src/main/controllers/web/signup.tmpl.html +++ b/src/main/controllers/web/signup.tmpl.html @@ -23,7 +23,7 @@ {#if @isTag($invite.kind, community_owner) =} -
This act will make your new account the owner of { %community.name }
+
This act will make your new account the owner of { %community.name }.
{/if =} {=/if} @@ -47,7 +47,7 @@
Email
- +
{#if .invite |$invite| =} diff --git a/static/site.css b/static/site.css index 482d889..da072d4 100644 --- a/static/site.css +++ b/static/site.css @@ -79,6 +79,7 @@ form .textinput { border-radius: 8px; outline: solid 2px transparent; transition: outline 0.2s; + cursor: text; } form .textinput input { flex-grow: 1; @@ -125,9 +126,11 @@ button, a.button { color: #fff; background-color: var(--theme-color); font-weight: bold; + transition: background-color 0.2s; + cursor: pointer; } button:hover, a.button:hover { - cursor: pointer; background-color: var(--theme-color-highlight); } +