Skip to content

Commit 9de0425

Browse files
authored
Merge pull request #356 from AppQuality/fix/responsive
fix(cp-dashboard): fix reports responsive breakpoints
2 parents 343f9a1 + 23e8c56 commit 9de0425

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/Campaign/ReportRow.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,13 @@ export const ReportRow = ({
9696
</Col>
9797
) : null}
9898
{isFunctional && (
99-
<Col xs={12} sm={6} md={4} lg={3}>
99+
<Col xs={12} sm={6} md={4} xl={3}>
100100
<BugsReportCard campaignId={campaignId} title={customer_title} />
101101
</Col>
102102
)}
103103
{reports && reports.length
104104
? reports.map((report) => (
105-
<Col xs={12} sm={6} md={4} lg={3}>
105+
<Col xs={12} sm={6} md={4} xl={3}>
106106
<SpecialCard>
107107
<SpecialCard.Meta
108108
justifyContent="start"

0 commit comments

Comments
 (0)