From f1c2db00e199c099b9d9a9632a7acecb65a9e2bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tristan=20Dani=C3=ABl=20Maat?= Date: Sat, 30 May 2020 21:04:31 +0100 Subject: [PATCH] Make the music indicator a proper button --- src/music/components/indicator.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/music/components/indicator.tsx b/src/music/components/indicator.tsx index 8324bbc..544d221 100644 --- a/src/music/components/indicator.tsx +++ b/src/music/components/indicator.tsx @@ -23,8 +23,8 @@ class Indicator extends React.Component { render() { let classes = classNames({ + btn: true, "col-auto": true, - "text-center": true, fas: true, "fa-muted": this.props.muted, "fa-play": this.props.playing, @@ -32,11 +32,12 @@ class Indicator extends React.Component { }); return ( -
+ > ); } }