Skip to content

Commit 6d8b244

Browse files
committed
update styles
1 parent b0e80de commit 6d8b244

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

MyApp.Client/src/styles/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555

5656
/* override element defaults */
5757
b, strong { font-weight:600; }
58-
[type='button'],button[type='submit']{cursor:pointer}
58+
[type='button'],button[type='submit'],button[href]{cursor:pointer}
5959

6060
/*typography*/
6161
.prose pre::-webkit-scrollbar, .prose code::-webkit-scrollbar {

MyApp/Areas/Identity/Pages/Account/Login.cshtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<h1 class="mb-4 text-2xl font-semibold text-gray-900 dark:text-gray-100">
1818
Sign In
1919
</h1>
20-
<div class="sm:shadow overflow-hidden sm:rounded-md">
20+
<div class="sm:shadow overflow-hidden sm:rounded-md border border-gray-300 dark:border-gray-700 bg-white dark:bg-black">
2121
<form method="post">
2222
<div class="px-4 bg-white dark:bg-black sm:p-6">
2323
<div asp-validation-summary="All" class="text-danger font-semibold text-center"></div>
@@ -45,8 +45,8 @@
4545
<div class="flex items-center justify-between">
4646
<div class="flex items-center">
4747
<input type="checkbox" id="chkRememberMe" name="rememberMe" value="true" checked="checked"
48-
class="h-4 w-4 rounded border-gray-300 text-indigo-600 focus:ring-indigo-500">
49-
<label for="chkRememberMe" class="ml-2 block text-sm text-gray-900">Remember Me</label>
48+
class="h-4 w-4 rounded border-gray-300 dark:border-gray-600 dark:bg-gray-800 text-indigo-600 focus:ring-indigo-500">
49+
<label for="chkRememberMe" class="ml-2 block text-sm text-gray-900 dark:text-gray-100">Remember Me</label>
5050
</div>
5151
</div>
5252

MyApp/Pages/Shared/Header.cshtml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
</li>
3232
}
3333

34-
RenderNavLink("/bookings-auto", "Bookings");
3534
if (!isAuthenticated)
3635
{
3736
RenderLinkButton("/Identity/Account/Login", "Sign In");

MyApp/tailwind.input.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
[type='file']:focus{outline:1px auto -webkit-focus-ring-color;}
156156
[type='color']{height:2.4rem;padding:2px 3px}
157157
[type='range']{height:2.4rem}
158-
[type='button'],button[type='submit']{cursor:pointer}
158+
[type='button'],button[type='submit'],button[href]{cursor:pointer}
159159

160160
@media (min-width: 640px) {
161161
[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='week'],[type='search'],[type='tel'],[type='time'],[type='color'],[multiple],textarea,select {

0 commit comments

Comments
 (0)