Skip to content

Commit

Permalink
[docs-infra] Fix ad in RTL (#44345)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari authored Nov 12, 2024
1 parent 015db15 commit e84fc98
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/mui-docs/src/Ad/ad.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ export const adBodyImageStyles = (theme: Theme) => ({
border: '1px dashed',
borderColor: theme.palette.divider,
borderRadius: theme.shape.borderRadius,
padding: '8px 8px 8px calc(8px + 130px)',
padding: 8,
paddingLeft: 8 + 130,
[theme.breakpoints.up('sm')]: {
padding: '12px 12px 12px calc(12px + 130px)',
padding: 12,
paddingLeft: 12 + 130,
},
},
imgWrapper: {
Expand Down

0 comments on commit e84fc98

Please sign in to comment.