Skip to content

Commit a96a4e4

Browse files
authored
Merge pull request #872 from AppQuality/UI-fixes-design
UI fixes design
2 parents 01e13e5 + 3d6da03 commit a96a4e4

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

src/pages/Video/components/Observation.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
GetVideosByVidObservationsApiResponse,
1414
} from 'src/features/api';
1515
import { ReactComponent as TagIcon } from 'src/assets/icons/tag-icon.svg';
16-
import { ReactComponent as ShareIcon } from 'src/assets/icons/share-stroke.svg';
16+
import { ReactComponent as LinkIcon } from 'src/assets/icons/link-stroke.svg';
1717
import { useTranslation } from 'react-i18next';
1818
import { useParams } from 'react-router-dom';
1919
import { useCallback, useEffect, useState } from 'react';
@@ -209,7 +209,7 @@ const Observation = ({
209209
copyLink(`observation-${observation.id}`, event)
210210
}
211211
>
212-
<ShareIcon />
212+
<LinkIcon />
213213
</IconButton>
214214
</Tooltip>
215215
</Container>

src/pages/Videos/PageHeader.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ const VideosPageHeader = () => {
3232
</Link>
3333
</PageHeader.Breadcrumbs>
3434
<PageHeader.Main mainTitle={t('__VIDEOS_PAGE_TITLE')}>
35-
<PageHeader.Title>
36-
<PageTitle>{t('__VIDEOS_PAGE_TITLE')}</PageTitle>
37-
</PageHeader.Title>
35+
<PageHeader.Title>{t('__VIDEOS_PAGE_TITLE')}</PageHeader.Title>
3836
<PageHeader.Meta>
3937
<Metas campaign={campaign} />
4038
</PageHeader.Meta>

src/pages/Videos/parts/VideoContainer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ const StyledSM = styled(SM)`
2121
const StyledCard = styled(ContainerCard)`
2222
padding: 0;
2323
border-radius: ${({ theme }) => theme.borderRadii.lg};
24-
border-color: ${({ theme }) => theme.palette.grey[300]};
24+
border-color: ${({ theme }) => theme.palette.grey[200]};
2525
`;
2626

2727
const StyledTitle = styled(Title)`
28-
border-bottom: 1px solid ${({ theme }) => theme.palette.grey[300]};
28+
border-bottom: 1px solid ${({ theme }) => theme.palette.grey[200]};
2929
`;
3030

3131
export const VideoContainer = ({

src/pages/Videos/parts/VideoItem.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const Container = styled.div`
1414
padding: ${({ theme }) => `${theme.space.xs} ${theme.space.sm}`};
1515
display: flex;
1616
gap: ${({ theme }) => theme.space.md};
17-
border-bottom: 2px solid ${({ theme }) => theme.palette.grey[300]};
17+
border-bottom: 2px solid ${({ theme }) => theme.palette.grey[200]};
1818
1919
&:hover {
2020
box-shadow: ${({ theme }) => theme.shadows.boxShadow(theme)};
@@ -97,7 +97,7 @@ const Video = ({
9797
isBold
9898
style={{ marginTop: appTheme.space.xxs }}
9999
>
100-
T{video.tester.id}
100+
Tester ID: T{video.tester.id}
101101
</SM>
102102
<ObservationsTotalContainer>
103103
<TagsContainer>

0 commit comments

Comments
 (0)