Compare commits

...

2 Commits

Author SHA1 Message Date
Chukwumdiebube 4dd99ec2d9 fixed size for mobile view 2023-02-28 23:45:34 +01:00
Chukwumdiebube 3ef3297dfc resized datepicker component 2023-02-28 21:16:55 +01:00
3 changed files with 9 additions and 3 deletions
@@ -62,8 +62,6 @@ export default function SignUp() {
}) })
return return
} }
//checks if email is a valid email address //checks if email is a valid email address
let regEx = /^[^0-9][a-zA-Z0-9._%+-]+@[a-zA-Z]+(\.[a-zA-Z]+)+$/; let regEx = /^[^0-9][a-zA-Z0-9._%+-]+@[a-zA-Z]+(\.[a-zA-Z]+)+$/;
if (regEx.test(email) == false) { if (regEx.test(email) == false) {
+1 -1
View File
@@ -76,7 +76,7 @@ export default function AddEditReminder({ className }) {
setMessage({status: true, message: ''}) setMessage({status: true, message: ''})
let {description, notes, category, mode} = infoDetail let {description, notes, category, mode} = infoDetail
//CHECKING IF AN EMPTY FIELD WAS PASSED //CHECKING IF AN EMPTY FIELD WAS PASSED
if(!description || !notes || !category || !mode){ if(!description || !category || !mode){
setSuccess(false) setSuccess(false)
setMessage({status: false, message: 'All fields must be filled'}) setMessage({status: false, message: 'All fields must be filled'})
return return
+8
View File
@@ -669,6 +669,7 @@ TODO: Responsive ===========================
.nft-userprofile-wrapper .content-wrapper-profile-only .auth { .nft-userprofile-wrapper .content-wrapper-profile-only .auth {
margin-top: -70px; margin-top: -70px;
} }
.react-date-picker__calendar {width: 290px;}
} }
@media (max-width: 376px) { @media (max-width: 376px) {
.notification-page .content-item .notifications { .notification-page .content-item .notifications {
@@ -677,6 +678,7 @@ TODO: Responsive ===========================
.notification-page .content-item .notifications .icon { .notification-page .content-item .notifications .icon {
@apply mb-2; @apply mb-2;
} }
} }
/* Calendar */ /* Calendar */
@@ -766,6 +768,11 @@ TODO: Responsive ===========================
} }
/* Date Picker */ /* Date Picker */
.react-date-picker{
display: flex !important;
flex: 1;
}
.react-date-picker__wrapper{ .react-date-picker__wrapper{
border: 0.5px solid #E3E4FE; border: 0.5px solid #E3E4FE;
padding: 1.25rem; padding: 1.25rem;
@@ -783,6 +790,7 @@ TODO: Responsive ===========================
.dark .react-date-picker__button svg{stroke: #7B818D;} .dark .react-date-picker__button svg{stroke: #7B818D;}
.react-date-picker__calendar {inset: 100% 25px auto auto !important;}
.react-date-picker__calendar .react-calendar{ .react-date-picker__calendar .react-calendar{
min-height: 18.4rem; min-height: 18.4rem;
} }