A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

Closes #339

+12 -3
+2 -2
src/Applications/UI/View.elm
··· 7 7 import Conditional exposing (..) 8 8 import ContextMenu exposing (ContextMenu) 9 9 import Html exposing (Html, section) 10 - import Html.Attributes exposing (class, style) 10 + import Html.Attributes exposing (class, id, style) 11 11 import Html.Events exposing (on) 12 12 import Html.Lazy as Lazy 13 13 import Json.Decode ··· 212 212 brick 213 213 [ on "focusout" (Json.Decode.succeed Blur) 214 214 , on "focusin" inputFocusDecoder 215 - , style "height" "calc(var(--vh, 1vh) * 100)" 216 215 ] 217 216 [ "overflow-x-hidden" 218 217 , "relative" 218 + , "screen-height" 219 219 , "scrolling-touch" 220 220 , "w-screen" 221 221 , "z-10"
+8 -1
src/Css/Application.css
··· 38 38 39 39 html, 40 40 body { 41 - height: calc(var(--vh, 1vh) * 100); 42 41 overflow: hidden; 43 42 overscroll-behavior: none; 43 + } 44 + 45 + html, 46 + body, 47 + .screen-height { 48 + /* TODO: Remove support for older browsers */ 49 + height: calc(var(--vh, 1vh) * 100); 50 + height: 100dvh; 44 51 } 45 52 46 53 body {
+2
src/Javascript/index.js
··· 991 991 992 992 // Vertical Height 993 993 // --------------- 994 + // TODO: Remove support for older browsers 995 + // Replaced by `dvh` CSS unit 994 996 995 997 setVerticalHeightUnit() 996 998