Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
graphemecluster committed Dec 1, 2024
2 parents a3a77d9 + eb172a2 commit a63bed0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/Components/TooltipChar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,19 @@ import { noop } from "../consts";
import type { Entry } from "../consts";

const Wrapper = styled.div`
padding-bottom: 3px;
padding-top: 10px;
margin-top: -10px;
padding-bottom: 5px;
margin-bottom: -5px;
overflow-wrap: break-word;
white-space: pre-wrap;
white-space: break-spaces;
`;
const Item = styled.p<{ textColor: string }>`
margin: 2px 10px;
&:last-child {
margin-bottom: 5px;
}
color: ${({ textColor }) => textColor};
${({ onClick }) =>
onClick &&
Expand Down

0 comments on commit a63bed0

Please sign in to comment.