Add Forgot Password functionality and related components
- Introduced new components for the Forgot Password flow: EmailInput, OTPInput, OTPVerification, PasswordSetup, and ConfirmationMessage. - Implemented navigation updates in DashboardCard for project links. - Added a new decal image asset for the categories. - Updated sidebar assets to include decals. - Enhanced UserAuth page to include a link for forgotten passwords. - Created a dedicated ForgotPassword page to manage the entire password recovery process. - Added styles for the new Forgot Password components and updated existing styles for consistency.
This commit is contained in:
@@ -1657,11 +1657,12 @@
|
||||
|
||||
.sidebar-right-wrapper {
|
||||
.wall-properties-container {
|
||||
.wall-properties-section{
|
||||
.wall-properties-section {
|
||||
padding: 14px;
|
||||
padding-bottom: 0;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.header {
|
||||
color: var(--text-color);
|
||||
}
|
||||
@@ -1910,63 +1911,59 @@
|
||||
&:nth-child(1),
|
||||
&:nth-child(8) {
|
||||
&::after {
|
||||
@include gradient-by-child(
|
||||
1
|
||||
); // First child uses the first color
|
||||
@include gradient-by-child(1); // First child uses the first color
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(2),
|
||||
&:nth-child(2) {
|
||||
&::after {
|
||||
|
||||
// @include gradient-by-child(4); // Second child uses the second color
|
||||
background: linear-gradient(144.19deg, rgba(197, 137, 26, 0.7) 16.62%, rgba(69, 48, 10, 0.7) 85.81%);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
&:nth-child(3),
|
||||
&:nth-child(9) {
|
||||
&::after {
|
||||
@include gradient-by-child(
|
||||
2
|
||||
); // Second child uses the second color
|
||||
@include gradient-by-child(3); // Second child uses the second color
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(3),
|
||||
&:nth-child(10) {
|
||||
&::after {
|
||||
@include gradient-by-child(
|
||||
3
|
||||
); // Third child uses the third color
|
||||
@include gradient-by-child(3); // Third child uses the third color
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(4),
|
||||
&:nth-child(11) {
|
||||
&::after {
|
||||
@include gradient-by-child(
|
||||
4
|
||||
); // Fourth child uses the fourth color
|
||||
@include gradient-by-child(4); // Fourth child uses the fourth color
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(5),
|
||||
&:nth-child(12) {
|
||||
&::after {
|
||||
@include gradient-by-child(
|
||||
5
|
||||
); // Fifth child uses the fifth color
|
||||
@include gradient-by-child(5); // Fifth child uses the fifth color
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(6),
|
||||
&:nth-child(13) {
|
||||
&::after {
|
||||
@include gradient-by-child(
|
||||
6
|
||||
); // Fifth child uses the fifth color
|
||||
@include gradient-by-child(6); // Fifth child uses the fifth color
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(7),
|
||||
&:nth-child(14) {
|
||||
&::after {
|
||||
@include gradient-by-child(
|
||||
7
|
||||
); // Fifth child uses the fifth color
|
||||
@include gradient-by-child(7); // Fifth child uses the fifth color
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2025,11 +2022,9 @@
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
font-size: var(--font-size-regular);
|
||||
background: linear-gradient(
|
||||
0deg,
|
||||
rgba(37, 24, 51, 0) 0%,
|
||||
rgba(52, 41, 61, 0.5) 100%
|
||||
);
|
||||
background: linear-gradient(0deg,
|
||||
rgba(37, 24, 51, 0) 0%,
|
||||
rgba(52, 41, 61, 0.5) 100%);
|
||||
pointer-events: none;
|
||||
backdrop-filter: blur(8px);
|
||||
opacity: 0;
|
||||
@@ -2285,4 +2280,4 @@
|
||||
text-transform: capitalize;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user