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:
@ -8,7 +8,7 @@ import { beautifyPastDateRelativeToNow } from '~/utils/date-utils';
|
|||||||
const StyledCreationDisplay = styled.span`
|
const StyledCreationDisplay = styled.span`
|
||||||
color: ${({ theme }) => theme.font.color.light};
|
color: ${({ theme }) => theme.font.color.light};
|
||||||
display: flex;
|
display: flex;
|
||||||
font-size: ${({ theme }) => theme.font.size.md};
|
font-size: ${({ theme }) => theme.font.size.sm};
|
||||||
user-select: none;
|
user-select: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
`;
|
`;
|
||||||
|
|||||||
@ -35,7 +35,7 @@ const StyledTitleContainer = styled.div`
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
gap: ${({ theme }) => theme.spacing(3)};
|
gap: ${({ theme }) => theme.spacing(2)};
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const StyledTopContainer = styled.div`
|
const StyledTopContainer = styled.div`
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
export const TEXT = {
|
export const TEXT = {
|
||||||
lineHeight: {
|
lineHeight: {
|
||||||
lg: 1.5,
|
lg: 1.5,
|
||||||
md: 1.2,
|
md: 1.1,
|
||||||
},
|
},
|
||||||
|
|
||||||
iconSizeMedium: 16,
|
iconSizeMedium: 16,
|
||||||
|
|||||||
Reference in New Issue
Block a user