added control titles

This commit is contained in:
Danny Coates 2019-02-20 19:59:29 -08:00
parent 2169a49d4c
commit f0a60d8c8e
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
7 changed files with 34 additions and 13 deletions

View file

@ -64,6 +64,7 @@ class Account extends Component {
<button
class="p-2 border rounded text-blue-dark border-blue-dark hover:text-white hover:bg-blue-dark focus:outline"
onclick="${e => this.login(e)}"
title="${translate('signInMenuOption')}"
>
${translate('signInMenuOption')}
</button>
@ -89,6 +90,7 @@ class Account extends Component {
<button
class="block w-full text-left px-4 py-2 text-grey-darkest hover:bg-blue hover:text-white cursor-pointer focus:outline"
onclick="${e => this.logout(e)}"
title="${translate('logOut')}"
>
${translate('logOut')}
</button>