diff options
author | Unknwon <u@gogs.io> | 2017-04-06 00:14:30 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-04-06 00:14:30 -0400 |
commit | a617d52374e937db0edacfba2a26bdd14a05538e (patch) | |
tree | 8c6448af2e4d68975ea66656b430e3b755e852c2 /public/less/_form.less | |
parent | 624474386aa51b74fdbee04bb85aaa957a22b99c (diff) |
2fa: initial support (#945)
Diffstat (limited to 'public/less/_form.less')
-rw-r--r-- | public/less/_form.less | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/public/less/_form.less b/public/less/_form.less index 120d31bf..8808485a 100644 --- a/public/less/_form.less +++ b/public/less/_form.less @@ -42,7 +42,7 @@ } input, textarea { - width: 50%!important; + width: 50% !important; } } } @@ -52,10 +52,10 @@ .user.reset.password, .user.signin, .user.signup { - @input-padding: 200px!important; + @input-padding: 200px !important; #create-page-form; form { - width: 700px!important; + width: 700px !important; .header { padding-left: @input-padding+30px; } @@ -65,6 +65,15 @@ } } +.user.signin.two-factor { + form { + width: 300px !important; + .header { + padding-left: inherit !important; + } + } +} + .repository { &.new.repo, &.new.migrate, |