mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-26 11:08:38 +03:00
Merge pull request #925 from gitbutlerapp/ui-updates
fix the disabled button state, less whitespace padding, fix login text
This commit is contained in:
commit
1d4ed6e628
@ -49,11 +49,13 @@
|
||||
<Button kind="plain" color="destructive" on:click={() => ($user = null)}>Log out</Button>
|
||||
{:else if $token !== null}
|
||||
{#await Promise.all([open($token.url), pollForUser($token.token)])}
|
||||
<div>Log in in your system browser</div>
|
||||
<div class="text-light-700">
|
||||
Your browser should have been opened. Please log into your GitButler account there.
|
||||
</div>
|
||||
{/await}
|
||||
<p>
|
||||
<button class="underline" on:click={() => open($authUrl)}>Click here</button>
|
||||
if you are not redirected automatically, you can
|
||||
If you were not redirected automatically, you can
|
||||
<button class="underline" on:click={() => open($authUrl)}>click here</button>
|
||||
</p>
|
||||
{:else}
|
||||
<Button {width} loading={signUpOrLoginLoading} color="purple" on:click={onSignUpOrLoginClick}>
|
||||
|
@ -11,7 +11,7 @@
|
||||
function toTokens(codeString: string): string[] {
|
||||
function sanitize(text: string) {
|
||||
var element = document.createElement('div');
|
||||
element.innerText = text;
|
||||
element.innerText = text.replace(/\t/g, ' ').replace(' ', ' ');
|
||||
return element.innerHTML;
|
||||
}
|
||||
|
||||
|
@ -233,7 +233,7 @@
|
||||
class="peer sr-only"
|
||||
/>
|
||||
<div
|
||||
class="peer-focus:ring-blue-300 dark:peer-focus:ring-blue-800 dark:bg-gray-700 dark:border-gray-600 peer h-6 w-11 rounded-full bg-gray-400 after:absolute after:left-[2px] after:top-[2px] after:h-5 after:w-5 after:rounded-full after:bg-white after:transition-all after:content-[''] peer-checked:bg-purple-600 peer-checked:after:translate-x-full peer-checked:after:border-white peer-focus:outline-none peer-focus:ring-4"
|
||||
class="peer-focus:ring-blue-300 dark:peer-focus:ring-blue-800 dark:bg-gray-700 dark:border-gray-600 peer h-6 w-11 rounded-full bg-gray-400 after:absolute after:left-[2px] after:top-[2px] after:h-5 after:w-5 after:rounded-full after:bg-white after:transition-all after:content-[''] peer-checked:bg-purple-600 peer-checked:after:translate-x-full peer-checked:after:border-white peer-focus:outline-none peer-focus:ring-4 peer-disabled:bg-zinc-300"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user