WIP: Some visual improvements for login #20
3 changed files with 3 additions and 3 deletions
|
@ -54,7 +54,7 @@ class Homeserver extends ElemJS {
|
|||
constructor() {
|
||||
super(q("#homeserver"));
|
||||
|
||||
this.tippy = tippy.default(q("#homeserver-question"), {
|
||||
this.tippy = tippy.default(q(".homeserver-question"), {
|
||||
content: q("#homeserver-popup-template").innerHTML,
|
||||
allowHTML: true,
|
||||
interactive: true,
|
||||
|
|
|
@ -24,7 +24,7 @@ html
|
|||
.form-input-container
|
||||
.homeserver-label
|
||||
label(for="homeserver") Homeserver
|
||||
span#homeserver-question (What's this?)
|
||||
span.homeserver-question (What's this?)
|
||||
input(type="text" name="homeserver" placeholder="matrix.org")#homeserver
|
||||
|
||||
#feedback
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
.form-error
|
||||
color: red
|
||||
|
||||
|
||||
#homeserver-question
|
||||
.homeserver-question
|
||||
font-size: 0.6em
|
||||
padding-left: 0.2em
|
||||
bad marked this conversation as resolved
cadence
commented
This does nothing, remove it. This does nothing, remove it.
|
||||
|
||||
|
|
Loading…
Reference in a new issue
This needs to be a lighter red for better contrast. Try #ff6561 I guess?
I think we should get a color scheme first and then replace it with css(or sass) variables
#27