Skip to content

Commit

Permalink
Refactor CSS files in src/screens/MemberDetail (#2941)
Browse files Browse the repository at this point in the history
* Update Member Detail css

* Fix colour change

* Fix linting issue

* Update app.module.css
  • Loading branch information
mandeepnh5 authored Dec 26, 2024
1 parent 9fdba79 commit 6997a04
Show file tree
Hide file tree
Showing 2 changed files with 542 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/screens/MemberDetail/MemberDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useMutation, useQuery } from '@apollo/client';
import Button from 'react-bootstrap/Button';
import { useTranslation } from 'react-i18next';
import { useLocation, useNavigate, useParams } from 'react-router-dom';
import styles from './MemberDetail.module.css';
import styles from '../../style/app.module.css';
import { languages } from 'utils/languages';
import { UPDATE_USER_MUTATION } from 'GraphQl/Mutations/mutations';
import { USER_DETAILS } from 'GraphQl/Queries/Queries';
Expand Down Expand Up @@ -433,7 +433,7 @@ const MemberDetail: React.FC<MemberDetailProps> = ({ id }): JSX.Element => {
{t('birthDate')}
</label>
<DatePicker
className={`${styles.datebox} w-100`}
className={`${styles.dateboxMemberDetail} w-100`}
value={dayjs(formState.birthDate)}
onChange={handleDateChange}
data-testid="birthDate"
Expand Down
Loading

0 comments on commit 6997a04

Please sign in to comment.