Skip to content

Commit

Permalink
refactored css (#2841)
Browse files Browse the repository at this point in the history
Co-authored-by: Rahul Chougule <[email protected]>
  • Loading branch information
rahulch07 and rahul-fl authored Dec 24, 2024
1 parent 45d18b6 commit 0b38475
Show file tree
Hide file tree
Showing 12 changed files with 161 additions and 457 deletions.
101 changes: 0 additions & 101 deletions src/components/EventManagement/Dashboard/EventDashboard.module.css

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState } from 'react';
import { Col, Row } from 'react-bootstrap';
import styles from './EventDashboard.module.css';
import styles from '../../../style/app.module.css';
import { useTranslation } from 'react-i18next';
import { EVENT_DETAILS } from 'GraphQl/Queries/Queries';
import { useQuery } from '@apollo/client';
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import type {
import AgendaItemsContainer from 'components/AgendaItems/AgendaItemsContainer';
import AgendaItemsCreateModal from 'components/AgendaItems/AgendaItemsCreateModal';

import styles from './EventAgendaItems.module.css';
import styles from '../../../style/app.module.css';
import Loader from 'components/Loader/Loader';

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
Table,
FormControl,
} from 'react-bootstrap';
import styles from './EventsAttendance.module.css';
import styles from '../../../style/app.module.css';
import { useLazyQuery } from '@apollo/client';
import { EVENT_ATTENDEES } from 'GraphQl/Queries/Queries';
import { useParams, Link } from 'react-router-dom';
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion src/screens/OrganizationActionItems/ItemDeleteModal.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import { Modal, Button } from 'react-bootstrap';
import styles from './OrganizationActionItems.module.css';
import styles from '../../style/app.module.css';
import { useMutation } from '@apollo/client';
import { DELETE_ACTION_ITEM_MUTATION } from 'GraphQl/Mutations/ActionItemMutations';
import { toast } from 'react-toastify';
Expand Down
2 changes: 1 addition & 1 deletion src/screens/OrganizationActionItems/ItemViewModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import dayjs from 'dayjs';
import type { FC } from 'react';
import { Button, Form, Modal } from 'react-bootstrap';
import type { InterfaceActionItemInfo } from 'utils/interfaces';
import styles from './OrganizationActionItems.module.css';
import styles from '../../style/app.module.css';
import { useTranslation } from 'react-i18next';
import { FormControl, TextField } from '@mui/material';
import { TaskAlt, HistoryToggleOff } from '@mui/icons-material';
Expand Down
Loading

0 comments on commit 0b38475

Please sign in to comment.