diff --git a/src/Components/Document/captionHeaders/floridaCaption.js b/src/Components/Document/captionHeaders/floridaCaption.js index b438bc1..461002c 100644 --- a/src/Components/Document/captionHeaders/floridaCaption.js +++ b/src/Components/Document/captionHeaders/floridaCaption.js @@ -26,32 +26,37 @@ const FloridaCaption = (props) => {
Edit Document
-
- {fetchedCase?.caption ? fetchedCase?.caption : <>}, +
+ {fetchedCase?.caption ? fetchedCase?.caption.toUpperCase() : <>},
-
+
Plaintiff(s),
- Case no. {fetchedCase?.caseNumber} + Case No. {fetchedCase?.caseNumber}
-
{displayCopy.versusText}
-
Judge: {fetchedCase?.judge}
+
v.
+ {/*
Judge: {fetchedCase?.judge}
*/}
-
- {fetchedCase?.captionTwo ? fetchedCase?.captionTwo : <>}, +
+ {fetchedCase?.captionTwo ? ( + fetchedCase?.captionTwo.toUpperCase() + ) : ( + <> + )} + ,
-
Defendant(s)
+
Defendant(s)
- ----------------------------------------------------------------------------/ + ________________________________________________________________/
diff --git a/src/styles/captions.scss b/src/styles/captions.scss index 344c9b2..e6ad870 100644 --- a/src/styles/captions.scss +++ b/src/styles/captions.scss @@ -3,10 +3,16 @@ } .florida-court-header-text { + color: #373737; font-weight: 500; } .florida-court-header-text2 { + color: #373737; font-weight: 500; margin-top: -5px; } + +.florida-inner { + font-weight: 400; +}