Skip to content

Commit

Permalink
Fix on mobile app context style
Browse files Browse the repository at this point in the history
  • Loading branch information
miku448 committed Dec 11, 2024
1 parent 1834103 commit f57215c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const IndicatorsDisplay = () => {

return (
<>
<div className={`IndicatorsDisplay ${isOpen ? 'open' : ''}`}>
<div className={`IndicatorsDisplay ${isOpen ? 'open' : ''} ${isMobileApp ? 'mobile' : ''}`}>
<button className="IndicatorsDisplay__toggle" onClick={() => setIsOpen(!isOpen)} title="Toggle Indicators">
<GiHeartBeats className={isOpen ? 'open' : ''} />
</button>
Expand Down

0 comments on commit f57215c

Please sign in to comment.