Skip to content

Commit ad8fbac

Browse files
committed
update styles
1 parent d07a6c0 commit ad8fbac

File tree

3 files changed

+10
-18
lines changed

3 files changed

+10
-18
lines changed

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/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 {

MyApp/wwwroot/css/app.css

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! tailwindcss v4.1.15 | MIT License | https://tailwindcss.com */
1+
/*! tailwindcss v4.1.17 | MIT License | https://tailwindcss.com */
22
@layer properties;
33
@layer theme, base, components, utilities;
44
@layer theme {
@@ -254,9 +254,7 @@
254254
::placeholder {
255255
color: currentcolor;
256256
@supports (color: color-mix(in lab, red, red)) {
257-
& {
258-
color: color-mix(in oklab, currentcolor 50%, transparent);
259-
}
257+
color: color-mix(in oklab, currentcolor 50%, transparent);
260258
}
261259
}
262260
}
@@ -998,17 +996,13 @@
998996
.bg-gray-500\/75 {
999997
background-color: color-mix(in srgb, oklch(55.1% 0.027 264.364) 75%, transparent);
1000998
@supports (color: color-mix(in lab, red, red)) {
1001-
& {
1002-
background-color: color-mix(in oklab, var(--color-gray-500) 75%, transparent);
1003-
}
999+
background-color: color-mix(in oklab, var(--color-gray-500) 75%, transparent);
10041000
}
10051001
}
10061002
.bg-gray-900\/80 {
10071003
background-color: color-mix(in srgb, oklch(21% 0.034 264.665) 80%, transparent);
10081004
@supports (color: color-mix(in lab, red, red)) {
1009-
& {
1010-
background-color: color-mix(in oklab, var(--color-gray-900) 80%, transparent);
1011-
}
1005+
background-color: color-mix(in oklab, var(--color-gray-900) 80%, transparent);
10121006
}
10131007
}
10141008
.bg-green-50 {
@@ -1470,9 +1464,7 @@
14701464
.ring-black\/5 {
14711465
--tw-ring-color: color-mix(in srgb, #000 5%, transparent);
14721466
@supports (color: color-mix(in lab, red, red)) {
1473-
& {
1474-
--tw-ring-color: color-mix(in oklab, var(--color-black) 5%, transparent);
1475-
}
1467+
--tw-ring-color: color-mix(in oklab, var(--color-black) 5%, transparent);
14761468
}
14771469
}
14781470
.ring-indigo-500 {
@@ -3315,7 +3307,7 @@
33153307
[type='range'] {
33163308
height: 2.4rem;
33173309
}
3318-
[type='button'],button[type='submit'] {
3310+
[type='button'],button[type='submit'],button[href] {
33193311
cursor: pointer;
33203312
}
33213313
@media (min-width: 640px) {

0 commit comments

Comments
 (0)