Skip to content

Commit

Permalink
Fix padding
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianMachado committed Sep 22, 2023
1 parent 4dcf187 commit 0078fdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/app/report/[id]/report-summary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type ReportSummaryProps = {
const ReportSummary = ({ summary, score }: ReportSummaryProps) => {
const scoreTextColor = getScoreTextColor(score);
return (
<div className="my-10 flex flex-col overflow-hidden rounded-lg bg-white p-8 shadow-md md:p-10 md:pl-0">
<div className="my-10 flex flex-col overflow-hidden rounded-lg bg-white p-8 shadow-md md:p-10">
<h3
className={`mb-6 font-roboto-mono text-xl font-bold uppercase ${scoreTextColor}`}
>
Expand Down

0 comments on commit 0078fdf

Please sign in to comment.