Added github button to invitation and invitation html structure refactor :octocat:
parent
21555fd440
commit
80e34ae1ee
|
@ -23,4 +23,10 @@ form.register-form
|
||||||
a.button.button-register.button-gray(href="", title="Sign up") Sign up
|
a.button.button-register.button-gray(href="", title="Sign up") Sign up
|
||||||
input(type="submit", style="display:none")
|
input(type="submit", style="display:none")
|
||||||
|
|
||||||
|
fieldset
|
||||||
|
a.button.button-github(href="", title="Enter with your github account")
|
||||||
|
span.icon.icon-github
|
||||||
|
span Sign Up with Github
|
||||||
|
input(type="submit", style="display:none")
|
||||||
|
|
||||||
tg-terms-notice
|
tg-terms-notice
|
||||||
|
|
|
@ -44,10 +44,12 @@
|
||||||
}
|
}
|
||||||
.invitation-form {
|
.invitation-form {
|
||||||
@include table-flex();
|
@include table-flex();
|
||||||
|
fieldset {
|
||||||
|
margin-bottom: .5rem;
|
||||||
|
}
|
||||||
input {
|
input {
|
||||||
background: $white;
|
background: $white;
|
||||||
color: $gray;
|
color: $gray;
|
||||||
margin-bottom: 1rem;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
@include placeholder {
|
@include placeholder {
|
||||||
color: $gray-light;
|
color: $gray-light;
|
||||||
|
@ -80,16 +82,28 @@
|
||||||
background: $fresh-taiga;
|
background: $fresh-taiga;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.button-github {
|
||||||
|
&:hover {
|
||||||
|
background: $black;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.login-form,
|
.login-form,
|
||||||
.register-form {
|
.register-form {
|
||||||
@include table-flex-child(1, 200px, 0, 200px);
|
@include table-flex-child(1, 200px, 0, 200px);
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
|
text-align: center;
|
||||||
.form-header {
|
.form-header {
|
||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.register-form {
|
||||||
|
fieldset {
|
||||||
|
&:last-child {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
.register-text {
|
.register-text {
|
||||||
@extend %small;
|
@extend %small;
|
||||||
color: $white;
|
color: $white;
|
||||||
|
|
Loading…
Reference in New Issue