Skip to content
Merged
Show file tree
Hide file tree
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
Binary file added public/images/observabilityButton.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/observabilityPanel.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/runOrDebug.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/videos/observabilityButton.mp4
Binary file not shown.
Binary file removed public/videos/observabilityPanel.mp4
Binary file not shown.
Binary file removed public/videos/runOrDebug.mp4
Binary file not shown.
10 changes: 2 additions & 8 deletions src/components/InstallationWizard/FinishStep/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,7 @@ export const FinishStep = () => (
observability.
</SectionDescription>
<s.IllustrationContainer>
<s.RunOrDebugIllustration
src={"/videos/runOrDebug.mp4"}
autoPlay={true}
loop={true}
/>
<s.RunOrDebugIllustration src={"/images/runOrDebug.gif"} />
</s.IllustrationContainer>
<s.SectionTitle>
<SectionIconContainer>
Expand All @@ -35,9 +31,7 @@ export const FinishStep = () => (
</SectionDescription>
<s.IllustrationContainer>
<s.ObservabilityPanelIllustration
src={"/videos/observabilityPanel.mp4"}
autoPlay={true}
loop={true}
src={"/images/observabilityPanel.gif"}
/>
</s.IllustrationContainer>
<s.TipContainer>
Expand Down
4 changes: 2 additions & 2 deletions src/components/InstallationWizard/FinishStep/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ export const IllustrationContainer = styled(s.IllustrationContainer)`
margin: 12px 0 12px;
`;

export const ObservabilityPanelIllustration = styled.video`
export const ObservabilityPanelIllustration = styled.img`
bottom: 0;
position: absolute;
width: 100%;
`;

export const RunOrDebugIllustration = styled.video`
export const RunOrDebugIllustration = styled.img`
width: 206px;
`;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,7 @@ export const ObservabilityStep = (props: ObservabilityStepProps) => {
</SectionDescription>
<s.IllustrationContainer>
<s.ObservabilityButtonIllustration
autoPlay={true}
loop={true}
src={"/videos/observabilityButton.mp4"}
src={"/images/observabilityButton.gif"}
/>
</s.IllustrationContainer>
<s.StepFooter>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const IllustrationContainer = styled(s.IllustrationContainer)`
margin-top: 8px;
`;

export const ObservabilityButtonIllustration = styled.video`
export const ObservabilityButtonIllustration = styled.img`
width: 100%;
`;

Expand Down
2 changes: 1 addition & 1 deletion src/components/InstallationWizard/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export const SectionDescription = styled.span`
export const IllustrationContainer = styled.div`
height: 123px;
width: 312px;
background: #393739;
background: #313131;
border-radius 4px;
position: relative;
overflow: hidden;
Expand Down