This commit is contained in:
Kenneth Jannette
2024-02-24 01:33:40 -06:00
parent a7bf90076d
commit 2d30b4e5b8
2 changed files with 17 additions and 6 deletions

View File

@@ -12,6 +12,7 @@ import { collection, setDoc, doc } from "firebase/firestore";
import { db } from "../../firebase"; import { db } from "../../firebase";
import { v4 as uuidv4 } from "uuid"; import { v4 as uuidv4 } from "uuid";
import TextInput from "../../pageElements/TextInput"; import TextInput from "../../pageElements/TextInput";
import { ExclamationTriangle } from "react-bootstrap-icons";
import Radio from "../../pageElements/Radio"; import Radio from "../../pageElements/Radio";
import "../../styles/modals.scss"; import "../../styles/modals.scss";
@@ -187,12 +188,18 @@ const UploadModal = (props) => {
<Modal.Body> <Modal.Body>
<div className="modal-header-text-wrapper"> <div className="modal-header-text-wrapper">
<p className="upload-modal-header-text"> <p className="upload-modal-header-text">
Select a .pdf file for upload. Enter title and choose document type. Select a .pdf file for upload, then 1. enter title 2. choose
(the other fields are optional.) document type. (the other fields are optional.)
</p> </p>
<p className="upload-modal-header-text"> <p className="upload-modal-header-text">
Select the document type.{" "}
<span className="upload-header-bold"> <span className="upload-header-bold">
<ExclamationTriangle
style={{
color: "red",
marginBottom: "4px",
marginRight: "8px",
}}
/>
Selecting "complaint" will automatically begin creation of Selecting "complaint" will automatically begin creation of
discovery requests. discovery requests.
</span> </span>
@@ -243,13 +250,12 @@ const UploadModal = (props) => {
/> />
</Col> </Col>
<Col> <Col>
{" "}
<div className="radio-wrapper"> <div className="radio-wrapper">
<Radiogroup <Radiogroup
title="Client position" title="Document type"
options={radioOptions} options={radioOptions}
value={radioValue} value={radioValue}
onClick={(e) => handleSetRadioValue(e, "clientPosition")} onClick={(e) => handleSetRadioValue(e, "documentType")}
/> />
</div> </div>
</Col> </Col>

View File

@@ -71,6 +71,7 @@
} }
} }
} }
.caption-one-container > .mb-3 { .caption-one-container > .mb-3 {
margin-bottom: 0px !important; margin-bottom: 0px !important;
} }
@@ -135,6 +136,10 @@
padding-left: 7px; padding-left: 7px;
} }
.zora {
width: 160px !important;
}
@media only screen and (max-width: 820px) { @media only screen and (max-width: 820px) {
.modal-body { .modal-body {
width: 580px !important; width: 580px !important;