Skip to content

Commit

Permalink
Fix badge size in all breakpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
ioannakok committed Jan 17, 2024
1 parent 31869a3 commit d6eb61a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions dotcom-rendering/src/components/Badge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@ import { css } from '@emotion/react';
import { from } from '@guardian/source-foundations';

const badgeSizingStyles = css`
height: 42px;
height: 50px;
${from.phablet} {
height: 90px;
}
${from.leftCol} {
height: 54px;
height: 100px;
}
${from.wide} {
height: 140px;
}
`;

Expand Down

0 comments on commit d6eb61a

Please sign in to comment.