puffier signin button et al
This commit is contained in:
parent
e19c711548
commit
08dc5fa23b
|
@ -259,7 +259,7 @@ select {
|
||||||
@apply m-auto;
|
@apply m-auto;
|
||||||
@apply py-8;
|
@apply py-8;
|
||||||
|
|
||||||
min-height: 33rem;
|
min-height: 36rem;
|
||||||
max-height: 40rem;
|
max-height: 40rem;
|
||||||
width: calc(100% - 3rem);
|
width: calc(100% - 3rem);
|
||||||
}
|
}
|
||||||
|
|
|
@ -62,7 +62,7 @@ class Account extends Component {
|
||||||
return html`
|
return html`
|
||||||
<send-account>
|
<send-account>
|
||||||
<button
|
<button
|
||||||
class="p-2 border rounded text-blue-dark border-blue-dark hover:text-white hover:bg-blue-dark focus:outline"
|
class="p-2 md:p-4 border rounded-lg text-blue-dark border-blue-dark hover:text-white hover:bg-blue-dark focus:outline"
|
||||||
onclick="${e => this.login(e)}"
|
onclick="${e => this.login(e)}"
|
||||||
title="${translate('signInMenuOption')}"
|
title="${translate('signInMenuOption')}"
|
||||||
>
|
>
|
||||||
|
|
|
@ -28,7 +28,7 @@ class Header extends Component {
|
||||||
`;
|
`;
|
||||||
return html`
|
return html`
|
||||||
<header
|
<header
|
||||||
class="relative flex-none flex flex-row items-center justify-between w-full px-6 h-16 z-20 bg-transparent"
|
class="relative flex-none flex flex-row items-center justify-between w-full px-6 h-16 md:h-24 z-20 bg-transparent"
|
||||||
>
|
>
|
||||||
${title} ${this.account.render()}
|
${title} ${this.account.render()}
|
||||||
</header>
|
</header>
|
||||||
|
|
|
@ -25,7 +25,7 @@ module.exports = function(trigger) {
|
||||||
id="email-input"
|
id="email-input"
|
||||||
type="text"
|
type="text"
|
||||||
class="${hidden} border rounded-lg w-full px-2 py-1 h-12 mb-4 text-lg text-grey-darker leading-loose"
|
class="${hidden} border rounded-lg w-full px-2 py-1 h-12 mb-4 text-lg text-grey-darker leading-loose"
|
||||||
placeholder=${state.translate('emailEntryPlaceholderUpdate')} />
|
placeholder=${state.translate('emailEntryPlaceholder')} />
|
||||||
<input
|
<input
|
||||||
class="btn rounded-lg w-full flex flex-no-shrink items-center justify-center"
|
class="btn rounded-lg w-full flex flex-no-shrink items-center justify-center"
|
||||||
value="${state.translate('signInMenuOption')}"
|
value="${state.translate('signInMenuOption')}"
|
||||||
|
|
Loading…
Reference in New Issue