From 07051ce2f48796420575939b301591a9c8d4d682 Mon Sep 17 00:00:00 2001 From: Nischal Paliwal <156404171+NischalPaliwal@users.noreply.github.com> Date: Sun, 26 Jan 2025 11:18:40 +0000 Subject: [PATCH] added styles from OrgUpdate.module.css to app.module.css --- .../General/OrgUpdate/OrgUpdate.module.css | 13 ------------- .../OrgSettings/General/OrgUpdate/OrgUpdate.tsx | 2 +- src/style/app.module.css | 15 +++++++++++++++ 3 files changed, 16 insertions(+), 14 deletions(-) delete mode 100644 src/components/OrgSettings/General/OrgUpdate/OrgUpdate.module.css diff --git a/src/components/OrgSettings/General/OrgUpdate/OrgUpdate.module.css b/src/components/OrgSettings/General/OrgUpdate/OrgUpdate.module.css deleted file mode 100644 index fca7ac5e5b..0000000000 --- a/src/components/OrgSettings/General/OrgUpdate/OrgUpdate.module.css +++ /dev/null @@ -1,13 +0,0 @@ -.message { - height: 420px; - display: flex; - justify-content: center; - align-items: center; - flex-direction: column; -} - -.icon { - transform: scale(1.5); - color: var(--bs-danger); - margin-bottom: 1rem; -} diff --git a/src/components/OrgSettings/General/OrgUpdate/OrgUpdate.tsx b/src/components/OrgSettings/General/OrgUpdate/OrgUpdate.tsx index 6e0be28a56..483f2c99da 100644 --- a/src/components/OrgSettings/General/OrgUpdate/OrgUpdate.tsx +++ b/src/components/OrgSettings/General/OrgUpdate/OrgUpdate.tsx @@ -12,7 +12,7 @@ import Loader from 'components/Loader/Loader'; import { Col, Form, Row } from 'react-bootstrap'; import convertToBase64 from 'utils/convertToBase64'; import { errorHandler } from 'utils/errorHandler'; -import styles from './OrgUpdate.module.css'; +import styles from '../../../../style/app.module.css'; import type { InterfaceQueryOrganizationsListObject, InterfaceAddress, diff --git a/src/style/app.module.css b/src/style/app.module.css index 82e790ba5e..36f9701d0c 100644 --- a/src/style/app.module.css +++ b/src/style/app.module.css @@ -8943,3 +8943,18 @@ button[data-testid='createPostBtn'] { width: 65vw; height: 0px !important; } + +/* OrgUpdate.tsx */ +.message { + height: 420px; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; +} + +.icon { + transform: scale(1.5); + color: var(--bs-danger); + margin-bottom: 1rem; +}