Skip to content

Commit

Permalink
become transient (cough)
Browse files Browse the repository at this point in the history
  • Loading branch information
iiPythonx committed Sep 2, 2024
1 parent e8e3e68 commit e9671af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/renderer/layouts/default-layout/player-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Playerbar } from '/@/renderer/features/player';
import { useGeneralSettings } from '/@/renderer/store/settings.store';

interface PlayerbarContainerProps {
drawerEffect: boolean;
$drawerEffect: boolean;
}

const PlayerbarContainer = styled.footer<PlayerbarContainerProps>`
Expand All @@ -13,7 +13,7 @@ const PlayerbarContainer = styled.footer<PlayerbarContainerProps>`
transition: background 0.5s;
${(props) =>
props.drawerEffect &&
props.$drawerEffect &&
`
&:hover {
background: var(--playerbar-bg-active);
Expand All @@ -26,7 +26,7 @@ export const PlayerBar = () => {

return (
<PlayerbarContainer
drawerEffect={playerbarOpenDrawer}
$drawerEffect={playerbarOpenDrawer}
id="player-bar"
>
<Playerbar />
Expand Down

0 comments on commit e9671af

Please sign in to comment.