mirror of
https://github.com/lingble/twenty.git
synced 2025-11-03 06:07:56 +00:00
Follow-up of #6929, this PR just changes the hard coded values to theme values.
This commit is contained in:
committed by
GitHub
parent
05d70b03fd
commit
d1b4f85e8c
@@ -96,12 +96,12 @@ const StyledEditor = styled.div`
|
|||||||
|
|
||||||
& .bn-inline-content code {
|
& .bn-inline-content code {
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
color: darkred;
|
color: ${({ theme }) => theme.font.color.danger};
|
||||||
padding: 2px 4px;
|
padding: 2px 4px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
border: 1px solid #e0e0e0;
|
border: 1px solid ${({ theme }) => theme.font.color.extraLight};
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
background-color: #1414140f;
|
background-color: ${({ theme }) => theme.background.transparent.light};
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user