mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
Correcting login screen markup/styling issues, fixes #133
This commit is contained in:
parent
0a0039820d
commit
501e8695f2
2 changed files with 20 additions and 13 deletions
|
@ -18,8 +18,13 @@
|
|||
}
|
||||
|
||||
main {
|
||||
top: 15px;
|
||||
@include breakpoint($mobile) { top: 0; }
|
||||
}
|
||||
|
||||
.login-box {
|
||||
max-width: 530px;
|
||||
margin: 240px auto;
|
||||
margin: 240px auto; // TODO: Change this to proper vertical centering with JS
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
background: #fff;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{{!< default}}
|
||||
<section class="login-box">
|
||||
<img class="login-logo" src="/core/admin/assets/img/logo.png" alt="" />
|
||||
<form id="login" method="post">
|
||||
<div class="email-wrap">
|
||||
|
@ -10,3 +11,4 @@
|
|||
<button class="button-save" type="submit">Log in</button>
|
||||
<a href="/ghost/register/">Register</a>
|
||||
</form>
|
||||
</section>
|
Loading…
Add table
Reference in a new issue