Merge branch 'fix/create-a-login-hint-on-mobile' into 'develop'

create a login hint on mobile

Closes #308

See merge request pleroma/pleroma-fe!530
This commit is contained in:
Shpuld Shpludson 2019-02-06 18:13:56 +00:00
commit 6cca15bade
3 changed files with 21 additions and 1 deletions

View file

@ -719,3 +719,17 @@ nav {
margin-right: 0.8em;
}
}
.login-hint {
text-align: center;
@media all and (min-width: 801px) {
display: none;
}
a {
display: inline-block;
padding: 1em 0px;
width: 100%;
}
}

View file

@ -37,6 +37,11 @@
</div>
</div>
<div class="main">
<div v-if="!currentUser" class="login-hint panel panel-default">
<router-link :to="{ name: 'login' }" class="panel-body">
{{ $t("login.hint") }}
</router-link>
</div>
<transition name="fade">
<router-view></router-view>
</transition>

View file

@ -28,7 +28,8 @@
"password": "Password",
"placeholder": "e.g. lain",
"register": "Register",
"username": "Username"
"username": "Username",
"hint": "Log in to join discussion"
},
"nav": {
"about": "About",