From e3b192b79882f15bb0f236a0cac976a97aba2404 Mon Sep 17 00:00:00 2001 From: Kenneth Jannette Date: Thu, 1 Feb 2024 13:50:42 -0600 Subject: [PATCH] more --- .../Document/captionHeaders/floridaCaption.js | 25 +++++++++++-------- src/styles/captions.scss | 6 +++++ 2 files changed, 21 insertions(+), 10 deletions(-) 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; +}