-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve button configuration / extensibility #10
Conversation
Hi, I would suggest also this change in <div class="winter-sso">
<a
href="<?= e($url); ?>"
class="flex items-center py-0 px-4 m-0 mt-4 w-full h-12 text-center normal-case bg-transparent bg-none rounded border border-cyan-700 border-solid cursor-pointer"
>
<?php if ($logoUrl): ?>
<div class="flex items-center font-sans leading-6 text-cyan-700">
<div class="flex justify-center items-center w-8 h-8 text-center rounded-full bg-zinc-100">
<img
src="<?= e($logoUrl); ?>"
alt="<?= e($logoAlt); ?>"
class="block w-5 max-w-full h-5 align-middle"
/>
</div>
<div class="mr-0 ml-3 w-px h-6 text-center bg-gray-400"></div>
</div>
<?php endif; ?>
<div class="flex-1 font-sans leading-6 text-cyan-700 <?= $logoUrl ? '-ml-9' : '' ?>">
<p class="m-0 font-medium leading-7 cursor-pointer">
<?= e($label); ?>
</p>
</div>
</a>
</div> |
Furthermore, consider replacing Plugin.php:134 Otherwise, let's create a new key... e.g. |
@goldmont give the latest commits a try, I've moved the button config to the providers array instead of the enabled_providers so it shouldn't conflict anymore. |
Hi, It's ok to me. Consider removing the |
Also, is it possible to bumb the library to a stable version? In my |
@LukeTowers There is an error in the view as I pointed out in a previous comment. |
@goldmont which error? |
The first argument of |
No description provided.