Skip to content

Commit

Permalink
Fix [Project monitor] change quotes to parenthesis 1.5.x (#2034)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilan7empest authored Oct 17, 2023
1 parent 68c30a6 commit 6d0e43a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/components/Project/project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,11 @@
font-size: 18px;
min-height: 40px;
padding: 15px 0 0 20px;

.text-sm {
font-size: 0.75em;
margin-left: 5px;
}
}

&:last-child {
Expand Down
8 changes: 7 additions & 1 deletion src/elements/ProjectDataCard/ProjectDataCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,13 @@ const ProjectDataCard = ({ content, href, link, params, statistics, table, title
) : (
<>
<div className="project-data-card__recent-text">
{!href ? 'Recent - "Last 48 hours"' : ''}
{!href ? (
<>
Recent <span class="text-sm">(last 48 hours)</span>
</>
) : (
''
)}
</div>
<ProjectTable params={params} table={table} />
{href ? (
Expand Down

0 comments on commit 6d0e43a

Please sign in to comment.