Skip to content
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

Remove redundant border classes #109

Merged
merged 3 commits into from
Aug 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/tailwindcss-stubs/resources/views/auth/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="container mx-auto">
<div class="flex flex-wrap justify-center">
<div class="w-full max-w-sm">
<div class="flex flex-col break-words bg-white border border-2 rounded shadow-md">
<div class="flex flex-col break-words bg-white border-2 rounded shadow-md">

<div class="font-semibold bg-gray-200 text-gray-700 py-3 px-6 mb-0">
{{ __('Login') }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="container mx-auto">
<div class="flex flex-wrap justify-center">
<div class="w-full max-w-sm">
<div class="flex flex-col break-words bg-white border border-2 rounded shadow-md">
<div class="flex flex-col break-words bg-white border-2 rounded shadow-md">

<div class="font-semibold bg-gray-200 text-gray-700 py-3 px-6 mb-0">
{{ __('Confirm Password') }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</div>
@endif

<div class="flex flex-col break-words bg-white border border-2 rounded shadow-md">
<div class="flex flex-col break-words bg-white border-2 rounded shadow-md">

<div class="font-semibold bg-gray-200 text-gray-700 py-3 px-6 mb-0">
{{ __('Reset Password') }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="container mx-auto">
<div class="flex flex-wrap justify-center">
<div class="w-full max-w-sm">
<div class="flex flex-col break-words bg-white border border-2 rounded shadow-md">
<div class="flex flex-col break-words bg-white border-2 rounded shadow-md">

<div class="font-semibold bg-gray-200 text-gray-700 py-3 px-6 mb-0">
{{ __('Reset Password') }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="container mx-auto">
<div class="flex flex-wrap justify-center">
<div class="w-full max-w-sm">
<div class="flex flex-col break-words bg-white border border-2 rounded shadow-md">
<div class="flex flex-col break-words bg-white border-2 rounded shadow-md">

<div class="font-semibold bg-gray-200 text-gray-700 py-3 px-6 mb-0">
{{ __('Register') }}
Expand Down
4 changes: 2 additions & 2 deletions src/tailwindcss-stubs/resources/views/auth/verify.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</div>
@endif

<div class="flex flex-col break-words bg-white border border-2 rounded shadow-md">
<div class="flex flex-col break-words bg-white border-2 rounded shadow-md">
<div class="font-semibold bg-gray-200 text-gray-700 py-3 px-6 mb-0">
{{ __('Verify Your Email Address') }}
</div>
Expand All @@ -22,7 +22,7 @@
</p>

<p class="leading-normal mt-6">
{{ __('If you did not receive the email') }}, <a class="text-blue-500 hover:text-blue-700 no-underline" onclick="event.preventDefault(); document.getElementById('resend-verification-form').submit();">{{ __('click here to request another') }}</a>.
{{ __('If you did not receive the email') }}, <a class="text-blue-500 hover:text-blue-700 no-underline cursor-pointer" onclick="event.preventDefault(); document.getElementById('resend-verification-form').submit();">{{ __('click here to request another') }}</a>.
</p>

<form id="resend-verification-form" method="POST" action="{{ route('verification.resend') }}" class="hidden">
Expand Down