@@ -335,11 +335,12 @@ const RequestEditPage = () => {
|
|||||||
const editingContent = () => {
|
const editingContent = () => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div> {headerPicker()}</div>
|
<div> {headerPicker(state, fetchedCase, onScrollClick)}</div>
|
||||||
<div className="doc-editing-wrapper">
|
<div className="doc-editing-wrapper">
|
||||||
<div className="pleading-header">{headerString}</div>
|
<div className="pleading-header">{headerString}</div>
|
||||||
{/*displayCopy.prelimaryStatement*/}
|
{/*displayCopy.prelimaryStatement*/}
|
||||||
<div className="doc-editing-sub-wrapper row">
|
<div className="doc-editing-sub-wrapper row">
|
||||||
|
<div className="doc-editing-instructions-header">INSTRUCTIONS</div>
|
||||||
{rogInstructions?.map((req, i) => (
|
{rogInstructions?.map((req, i) => (
|
||||||
<div className="request-text-up-row">
|
<div className="request-text-up-row">
|
||||||
<div>{`${i + 1}.`}</div>
|
<div>{`${i + 1}.`}</div>
|
||||||
|
|||||||
@@ -299,7 +299,7 @@ export const DocCard = (props) => {
|
|||||||
const buttonText =
|
const buttonText =
|
||||||
docType === "interrogatories-out"
|
docType === "interrogatories-out"
|
||||||
? "Edit Request"
|
? "Edit Request"
|
||||||
: responseGenerations > 0
|
: responseGenerations > 1
|
||||||
? "Edit Response"
|
? "Edit Response"
|
||||||
: "Generate Response";
|
: "Generate Response";
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -35,11 +35,21 @@
|
|||||||
margin-bottom: 25px;
|
margin-bottom: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.doc-editing-instructions-header {
|
||||||
|
font-family: Roboto;
|
||||||
|
text-decoration: underline;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 1.3rem;
|
||||||
|
font-weight: 500;
|
||||||
|
letter-spacing: 0.02rem;
|
||||||
|
}
|
||||||
|
|
||||||
.doc-edit-subheader {
|
.doc-edit-subheader {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.req-item-outer-div {
|
.req-item-outer-div {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
&.row {
|
&.row {
|
||||||
|
|||||||
Reference in New Issue
Block a user