style and typo fixes

This commit is contained in:
jaina heartles 2022-12-10 02:45:16 -08:00
parent 25cd5f982b
commit b781b34029
2 changed files with 6 additions and 3 deletions

View File

@ -23,7 +23,7 @@
</div>
</div>
{#if @isTag($invite.kind, community_owner) =}
<div>This act will make your new account the owner of { %community.name }</div>
<div>This act will make your new account the owner of { %community.name }.</div>
{/if =}
</div>
{=/if}
@ -47,7 +47,7 @@
<div>Email</div>
<div class="textinput">
<span class="prefix"><i class="fa-solid fa-envelope fa-fw"></i></span>
<input type="email" name="email" placeholder="me@exmaple.com" />
<input type="email" name="email" placeholder="me@example.com" />
</div>
</label>
{#if .invite |$invite| =}

View File

@ -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);
}