Skip to content

Commit 4669205

Browse files
committed
chore: remove start a case text, close text
1 parent 598df35 commit 4669205

File tree

2 files changed

+1
-36
lines changed

2 files changed

+1
-36
lines changed

web/src/components/Popup/MiniGuides/MainStructureTemplate.tsx

Lines changed: 1 addition & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -96,30 +96,6 @@ const DesktopCompactPagination = styled(CompactPagination)`
9696
)}
9797
`;
9898

99-
const Close = styled.label`
100-
display: none;
101-
102-
${landscapeStyle(
103-
() => css`
104-
display: flex;
105-
position: absolute;
106-
top: ${responsiveSize(24, 32)};
107-
right: 17px;
108-
display: flex;
109-
align-items: flex-end;
110-
justify-content: flex-end;
111-
cursor: pointer;
112-
z-index: 11;
113-
114-
&:hover {
115-
text-decoration: underline;
116-
}
117-
118-
color: ${({ theme }) => theme.primaryBlue};
119-
`
120-
)}
121-
`;
122-
12399
const RightContainer = styled.div`
124100
width: 86vw;
125101
position: relative;
@@ -203,17 +179,7 @@ const Template: React.FC<ITemplate> = ({
203179
label={`${currentPage}/${numPages}`}
204180
/>
205181
</LeftContainer>
206-
<RightContainer>
207-
<Close
208-
onClick={() => {
209-
onClose();
210-
removeOnboardingHashPath();
211-
}}
212-
>
213-
Close
214-
</Close>
215-
{RightContent}
216-
</RightContainer>
182+
<RightContainer>{RightContent}</RightContainer>
217183
</Container>
218184
</>
219185
);

web/src/pages/Resolver/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ const DisputeResolver: React.FC = () => {
9292
<>
9393
<HeroImage />
9494
<Container>
95-
{isConnected && !isPreviewPage ? <StyledLabel>Start a case</StyledLabel> : null}
9695
{isConnected ? (
9796
<StyledEnsureAuth>
9897
<MiddleContentContainer>

0 commit comments

Comments
 (0)