|
@@ -1,7 +1,7 @@
|
|
|
import {Fragment} from 'react';
|
|
|
import styled from '@emotion/styled';
|
|
|
|
|
|
-import emptyStateImg from 'sentry-images/spot/performance-empty-state.svg';
|
|
|
+import emptyStateImg from 'sentry-images/spot/profiling-empty-state.svg';
|
|
|
|
|
|
import ButtonBar from 'sentry/components/buttonBar';
|
|
|
import OnboardingPanel from 'sentry/components/onboardingPanel';
|
|
@@ -46,13 +46,19 @@ const HeroImage = styled('img')`
|
|
|
}
|
|
|
|
|
|
@media (min-width: ${p => p.theme.breakpoints.large}) {
|
|
|
- transform: translateX(-30%);
|
|
|
+ transform: translateX(-55%);
|
|
|
+ width: 300px;
|
|
|
+ min-width: 300px;
|
|
|
+ }
|
|
|
+
|
|
|
+ @media (min-width: ${p => p.theme.breakpoints.xlarge}) {
|
|
|
+ transform: translateX(-60%);
|
|
|
width: 380px;
|
|
|
min-width: 380px;
|
|
|
}
|
|
|
|
|
|
- @media (min-width: ${p => p.theme.breakpoints.xlarge}) {
|
|
|
- transform: translateX(-30%);
|
|
|
+ @media (min-width: ${p => p.theme.breakpoints.xxlarge}) {
|
|
|
+ transform: translateX(-60%);
|
|
|
width: 420px;
|
|
|
min-width: 420px;
|
|
|
}
|