Merge pull request #5917 from KumJungMin/fix/issue-4387

fix(Tooltip): apply color in bottom arrow
pull/5970/head
Tuğçe Küçükoğlu 2024-06-26 14:53:42 +03:00 committed by GitHub
commit 9d107f56ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -58,6 +58,8 @@ const theme = ({ dt }) => `
.p-tooltip-bottom .p-tooltip-arrow {
margin-left: calc(-1 * ${dt('tooltip.gutter')});
border-width: 0 ${dt('tooltip.gutter')} ${dt('tooltip.gutter')} ${dt('tooltip.gutter')};
border-top-color: ${dt('tooltip.background')};
border-bottom-color: ${dt('tooltip.background')};
}
`;