Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[frontend] ADM-646: use rem replace px #785

Merged
merged 4 commits into from
Dec 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@
})

export const TooltipContainer = styled('div')({
marginLeft: '4px',
marginLeft: '0.25rem',
})

export const StyledTooltip = styled(({ className, ...props }: any) => (

Check warning on line 44 in frontend/src/components/Metrics/MetricsStep/CycleTime/style.tsx

View workflow job for this annotation

GitHub Actions / frontend-check

Unexpected any. Specify a different type

Check warning on line 44 in frontend/src/components/Metrics/MetricsStep/CycleTime/style.tsx

View workflow job for this annotation

GitHub Actions / frontend-check

Unexpected any. Specify a different type
<Tooltip placement='right-start' {...props} componentsProps={{ tooltip: { className: className } }} />
))(`
max-width: 500px;
margin-top: 10px;
max-width: 31.25rem;
margin-top: 0.625rem;
`)
Loading