Skip to content

Commit 76e4055

Browse files
Merge pull request #9 from crishellco/cm/update-panel-component-border-radiuses
Match Border Radiuses
2 parents 707749a + 10b4437 commit 76e4055

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

src/tailwindcss-stubs/views/auth/login.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<div class="flex items-center">
55
<div class="md:w-1/2 md:mx-auto">
66
<div class="rounded shadow">
7-
<div class="font-medium text-lg text-brand-darker bg-brand-lighter p-3 rounded rounded-t">
7+
<div class="font-medium text-lg text-brand-darker bg-brand-lighter p-3 rounded-t">
88
Login
99
</div>
10-
<div class="bg-white p-3 rounded rounded-b">
10+
<div class="bg-white p-3 rounded-b">
1111
<form class="form-horizontal" method="POST" action="{{ route('login') }}">
1212
{{ csrf_field() }}
1313

src/tailwindcss-stubs/views/auth/passwords/email.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<div class="flex items-center">
55
<div class="md:w-1/2 md:mx-auto">
66
<div class="rounded shadow">
7-
<div class="font-medium text-lg text-brand-darker bg-brand-lighter p-3 rounded rounded-t">
7+
<div class="font-medium text-lg text-brand-darker bg-brand-lighter p-3 rounded-t">
88
Reset Password
99
</div>
10-
<div class="bg-white p-3 rounded rounded-b">
10+
<div class="bg-white p-3 rounded-b">
1111
@if (session('status'))
1212
<div class="bg-green-lightest border border-green-light text-green-dark text-sm px-4 py-3 rounded mb-4">
1313
{{ session('status') }}

src/tailwindcss-stubs/views/auth/passwords/reset.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<div class="flex items-center">
55
<div class="md:w-1/2 md:mx-auto">
66
<div class="rounded shadow">
7-
<div class="font-medium text-lg text-brand-darker bg-brand-lighter p-3 rounded rounded-t">
7+
<div class="font-medium text-lg text-brand-darker bg-brand-lighter p-3 rounded-t">
88
Reset Password
99
</div>
10-
<div class="bg-white p-3 rounded rounded-b">
10+
<div class="bg-white p-3 rounded-b">
1111
<form class="form-horizontal" method="POST" action="{{ route('password.request') }}">
1212
{{ csrf_field() }}
1313

src/tailwindcss-stubs/views/auth/register.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<div class="flex items-center">
55
<div class="md:w-1/2 md:mx-auto">
66
<div class="rounded shadow">
7-
<div class="font-medium text-lg text-brand-darker bg-brand-lighter p-3 rounded rounded-t">
7+
<div class="font-medium text-lg text-brand-darker bg-brand-lighter p-3 rounded-t">
88
Register
99
</div>
10-
<div class="bg-white p-3 rounded rounded-b">
10+
<div class="bg-white p-3 rounded-b">
1111
<form class="form-horizontal" method="POST" action="{{ route('register') }}">
1212
{{ csrf_field() }}
1313

src/tailwindcss-stubs/views/home.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<div class="flex items-center">
55
<div class="md:w-1/2 md:mx-auto">
66
<div class="rounded shadow">
7-
<div class="font-medium text-lg text-brand-darker bg-brand-lighter p-3 rounded rounded-t">
7+
<div class="font-medium text-lg text-brand-darker bg-brand-lighter p-3 rounded-t">
88
Dashboard
99
</div>
10-
<div class="bg-white p-3 rounded rounded-b">
10+
<div class="bg-white p-3 rounded-b">
1111
@if (session('status'))
1212
<div class="bg-green-lightest border border-green-light text-green-dark text-sm px-4 py-3 rounded mb-4">
1313
{{ session('status') }}

0 commit comments

Comments
 (0)