Fix: Reduce spacing gap between Task title and subtitle (#5711)

Fixes: #5669

---------

Co-authored-by: Thomas Trompette <thomas.trompette@sfr.fr>
This commit is contained in:
Jeet Desai 2024-06-04 18:47:46 +05:30 committed by GitHub
parent 5e32cb215e
commit fa70f9cfc7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ import { beautifyPastDateRelativeToNow } from '~/utils/date-utils';
const StyledCreationDisplay = styled.span`
color: ${({ theme }) => theme.font.color.light};
display: flex;
font-size: ${({ theme }) => theme.font.size.md};
font-size: ${({ theme }) => theme.font.size.sm};
user-select: none;
width: 100%;
`;

View File

@ -35,7 +35,7 @@ const StyledTitleContainer = styled.div`
display: flex;
flex-direction: column;
width: 100%;
gap: ${({ theme }) => theme.spacing(3)};
gap: ${({ theme }) => theme.spacing(2)};
`;
const StyledTopContainer = styled.div`

View File

@ -1,7 +1,7 @@
export const TEXT = {
lineHeight: {
lg: 1.5,
md: 1.2,
md: 1.1,
},
iconSizeMedium: 16,