UI login page, and custom-table changes

This commit is contained in:
Gagan7900
2026-08-11 17:38:53 +05:30
parent 4ac755d579
commit 6702b6e038
3 changed files with 15 additions and 19 deletions
@@ -49,7 +49,7 @@
<!-- User Name Field (White Input Background) --> <!-- User Name Field (White Input Background) -->
<div> <div>
<label for="signin-username" class="block text-sm font-semibold text-slate-800 mb-1.5">User Name</label> <label for="signin-username" class="block text-sm font-semibold text-slate-800 mb-1.5">User Name</label>
<input type="text" id="signin-username" placeholder="user name" formControlName="username" <input type="text" id="signin-username" placeholder="User Name" formControlName="username"
autocomplete="username" autocomplete="username"
class="login-input w-full px-4 py-3 bg-white border border-slate-300 rounded-xl text-base font-semibold text-slate-900 placeholder-slate-400 focus:outline-none focus:ring-2 focus:ring-purple-400/50 focus:border-purple-500 focus:bg-white transition-all duration-200" /> class="login-input w-full px-4 py-3 bg-white border border-slate-300 rounded-xl text-base font-semibold text-slate-900 placeholder-slate-400 focus:outline-none focus:ring-2 focus:ring-purple-400/50 focus:border-purple-500 focus:bg-white transition-all duration-200" />
</div> </div>
@@ -105,22 +105,23 @@
} }
.data-table-modern .table thead { .data-table-modern .table thead {
// background: linear-gradient(
// 135deg,
// #020617 0%,
// #172554 40%,
// #4338CA 75%,
// #7C3AED 100%
// );
background: #7C3AED; background: #7C3AED;
color: var(--color-white); color: var(--color-white);
} }
.data-table-modern .table thead tr:first-child th:first-child {
border-top-left-radius: 0.75rem;
}
.data-table-modern .table thead tr:first-child th:last-child {
border-top-right-radius: 0.75rem;
}
.data-table-modern .table thead th { .data-table-modern .table thead th {
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;
font-weight: 600; font-weight: 700;
font-size: 0.6875rem; font-size: 0.75rem;
letter-spacing: 0.04em; letter-spacing: 0.03em;
text-transform: uppercase; text-transform: uppercase;
white-space: nowrap; white-space: nowrap;
vertical-align: middle; vertical-align: middle;
@@ -130,7 +131,7 @@
} }
.data-table-modern .table tbody td { .data-table-modern .table tbody td {
padding: 0.2rem 0.75rem; padding: 0.5rem 1rem;
vertical-align: middle; vertical-align: middle;
color: var(--color-defaulttextcolor); color: var(--color-defaulttextcolor);
border: none; border: none;
+2 -7
View File
@@ -2,13 +2,8 @@
<footer <footer
class="footer mt-auto xl:ps-[15rem] font-normal font-inter bg-white text-defaultsize leading-normal text-[0.813] shadow-[0_0_0.4rem_rgba(0,0,0,0.1)] dark:!bg-bodybg py-4 text-center"> class="footer mt-auto xl:ps-[15rem] font-normal font-inter bg-white text-defaultsize leading-normal text-[0.813] shadow-[0_0_0.4rem_rgba(0,0,0,0.1)] dark:!bg-bodybg py-4 text-center">
<div class="container"> <div class="container">
<span class=" dark:text-defaulttextcolor/50"> Copyright © <span id="year">{{fullyear}}</span> <a <span class=" dark:text-defaulttextcolor/50"> Copyright © <span id="year">{{fullyear}}</span> Syscom
href="javascript:void(0);" class="text-defaulttextcolor font-semibold dark:text-defaulttextcolor"> Ynex</a>. Distribution LLC. All rights reserved.
Designed with <span class="bi bi-heart-fill text-danger"></span> by <a href="javascript:void(0);">
<span class="font-semibold text-primary underline">Spruko</span>
</a> All
rights
reserved
</span> </span>
</div> </div>
</footer> </footer>