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.

Remove Html.Styled from Kit

+16 -26
+8 -26
src/Applications/UI/Kit.elm
··· 9 9 import Css 10 10 import Css.Classes as C 11 11 import Html exposing (Html) 12 - import Html.Attributes exposing (href, style) 12 + import Html.Attributes as A exposing (href, style) 13 13 import Html.Events exposing (onClick, onInput) 14 - import Html.Styled 15 - import Html.Styled.Attributes exposing (css) 16 14 import Material.Icons as Icons 17 15 import Material.Icons.Types exposing (Coloring(..)) 18 16 import Svg ··· 250 248 , C.overflow_hidden 251 249 , C.relative 252 250 ] 253 - [ logoBackdrop 254 - |> Html.Styled.map never 255 - |> Html.Styled.toUnstyled 251 + [ Html.map never logoBackdrop 256 252 , chunk 257 253 [ C.flex 258 254 , C.flex_col ··· 405 401 [ Html.text params.label ] 406 402 407 403 408 - logoBackdrop : Html.Styled.Html Never 404 + logoBackdrop : Html Never 409 405 logoBackdrop = 410 - Chunky.Styled.brick 411 - [ css logoBackdropStyles ] 412 - [ C.absolute 406 + Html.div 407 + [ A.class "logo-backdrop" 408 + 409 + -- 410 + , C.absolute 413 411 , C.bg_cover 414 412 , C.bg_no_repeat 415 413 , C.h_0 ··· 610 608 , C.dark__text_gray_600 611 609 ] 612 610 [] 613 - 614 - 615 - 616 - ----------------------------------------- 617 - -- ㊙️ 618 - ----------------------------------------- 619 - 620 - 621 - logoBackdropStyles : List Css.Style 622 - logoBackdropStyles = 623 - [ Css.backgroundImage (Css.url "images/diffuse__icon-dark.svg") 624 - , Css.backgroundPosition2 (Css.pct -43.5) (Css.px 98) 625 - , Css.property "transform-origin" "left top" 626 - , Css.transform (Css.rotate (Css.deg 90)) 627 - , Css.width (Css.vh 105) 628 - ]
+8
src/Css/Logo.css
··· 5 5 .logo img { 6 6 width: 154px; 7 7 } 8 + 9 + .logo-backdrop { 10 + background-image: url("images/diffuse__icon-dark.svg"); 11 + background-position: -43.5% 98px; 12 + transform-origin: left top; 13 + transform: rotate(90deg); 14 + width: 105vh; 15 + }