style and typo fixes
This commit is contained in:
parent
25cd5f982b
commit
b781b34029
2 changed files with 6 additions and 3 deletions
|
@ -23,7 +23,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{#if @isTag($invite.kind, community_owner) =}
|
{#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 =}
|
{/if =}
|
||||||
</div>
|
</div>
|
||||||
{=/if}
|
{=/if}
|
||||||
|
@ -47,7 +47,7 @@
|
||||||
<div>Email</div>
|
<div>Email</div>
|
||||||
<div class="textinput">
|
<div class="textinput">
|
||||||
<span class="prefix"><i class="fa-solid fa-envelope fa-fw"></i></span>
|
<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>
|
</div>
|
||||||
</label>
|
</label>
|
||||||
{#if .invite |$invite| =}
|
{#if .invite |$invite| =}
|
||||||
|
|
|
@ -79,6 +79,7 @@ form .textinput {
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
outline: solid 2px transparent;
|
outline: solid 2px transparent;
|
||||||
transition: outline 0.2s;
|
transition: outline 0.2s;
|
||||||
|
cursor: text;
|
||||||
}
|
}
|
||||||
form .textinput input {
|
form .textinput input {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
|
@ -125,9 +126,11 @@ button, a.button {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: var(--theme-color);
|
background-color: var(--theme-color);
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
transition: background-color 0.2s;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
button:hover, a.button:hover {
|
button:hover, a.button:hover {
|
||||||
cursor: pointer;
|
|
||||||
background-color: var(--theme-color-highlight);
|
background-color: var(--theme-color-highlight);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue