Skip to content

Commit

Permalink
Add pointer cursor to now-playing section
Browse files Browse the repository at this point in the history
  • Loading branch information
icidasset committed Aug 5, 2018
1 parent a8f9549 commit 85393ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App/Console/View.elm
Expand Up @@ -28,7 +28,7 @@ import Variations exposing (Variations(..))
-- Styles

import Console.Styles exposing (..)
import Styles exposing (Styles(Console, Zed))
import Styles exposing (Styles(Console, WithPointer, Zed))


-- 🍯
Expand Down Expand Up @@ -112,7 +112,7 @@ nowPlaying activeItem isLoading stalled =
track.tags.artist ++ "" ++ track.tags.title
in
el
Zed
WithPointer
[ track
|> Tracks.Types.ScrollToActiveTrack
|> TopLevel.TracksMsg
Expand Down
2 changes: 2 additions & 0 deletions src/Styles/Styles.elm
Expand Up @@ -41,6 +41,7 @@ type Styles
| Message
| Selected
| WithoutLineHeight
| WithPointer
-- Buttons
| AuthenticationButton
| Button
Expand Down Expand Up @@ -157,6 +158,7 @@ basics =
, style Message [ Color.text Color.white ]
, style Selected [ Color.text colors.base08 ]
, style WithoutLineHeight [ Font.lineHeight 0 ]
, style WithPointer [ cursor "pointer" ]
]


Expand Down

0 comments on commit 85393ad

Please sign in to comment.