Skip to content

Commit

Permalink
10549:Reverted the font size to its original setting and wrapped the …
Browse files Browse the repository at this point in the history
…docket number.
  • Loading branch information
btejha committed Dec 2, 2024
1 parent 409ab9f commit 288d070
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
10 changes: 5 additions & 5 deletions web-client/src/styles/typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,9 @@ a:hover {
font-weight: bold;
}

h1,
.heading-2 {
@media only screen and (max-width: $medium-screen) {
font-size: 1.125em
.no-wrap-text {
@media only screen and (max-width: $small-screen) {
white-space: normal;
word-wrap: break-word;
}
}
}
5 changes: 4 additions & 1 deletion web-client/src/views/CaseDetail/CaseDetailHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,10 @@ export const CaseDetailHeader = connect<
size="1x"
/>
)}
<CaseLink formattedCase={formattedCaseDetail}>
<CaseLink
className="no-wrap-text"
formattedCase={formattedCaseDetail}
>
Docket Number:{' '}
{formattedCaseDetail.docketNumberWithSuffix}
</CaseLink>
Expand Down

0 comments on commit 288d070

Please sign in to comment.