Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion external/@worldbrain/memex-common
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ const StyledAnnotationBox = styled.div`
const AnnotationBody = styled.span`
background-color: ${(props) => props.theme.colors.secondary};
white-space: normal;
padding: 0 5px;
padding: 2px 5px;
box-decoration-break: clone;
font-size: 14px;
font-size: 18px;
line-height: 20px;
color: ${(props) => props.theme.colors.primary};
font-family: ${(props) => props.theme.fonts.content};
`;

const AnnotationComment = styled.div`
Expand Down
1 change: 1 addition & 0 deletions frontend/src/main-ui/styles/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export const theme: Theme = {
fonts: {
primary: '"Poppins", sans-serif',
secondary: '"Poppins", sans-serif',
content: 'serif',
},
hoverBackgrounds: {
primary: '#e0e0e0',
Expand Down