diff --git a/src/components/player/PlayerBar.tsx b/src/components/player/PlayerBar.tsx index 54b621e..e5a4266 100644 --- a/src/components/player/PlayerBar.tsx +++ b/src/components/player/PlayerBar.tsx @@ -463,7 +463,7 @@ const PlayerBar = () => { > {/* Seek Backward Button */} - + { /> {/* Previous Song Button */} - + { /> {/* Play/Pause Button */} - + { /> {/* Next Song Button */} - + { /> {/* Seek Forward Button */} - + {text}; +const StyledTooltip = styled(Tooltip)` + .rs-tooltip-inner { + background-color: #000000; + color: #ffffff; + } +`; + +export const tooltip = (text: string) => {text}; const CustomTooltip = ({ children, text, delay, ...rest }: any) => { return ( diff --git a/src/styles/custom-theme.less b/src/styles/custom-theme.less index 8ea2685..0a3f3bb 100644 --- a/src/styles/custom-theme.less +++ b/src/styles/custom-theme.less @@ -52,3 +52,7 @@ @panel-heading-color: undefined; @button-ripple: false; + +// Tooltip +@tooltip-bg: transparent; +@tooltip-color: transparent;