elm-twitch/src/Consts.elm

39 lines
382 B
Elm
Raw Normal View History

2020-10-04 15:24:04 +02:00
module Consts exposing
( homeFontSize
, homePadding
, name
, normalFontSize
, titleFontSize
, url
)
2020-10-04 13:15:57 +02:00
url : String
url =
"twitch.tforgione.fr"
name : String
name =
url
2020-10-04 15:24:04 +02:00
normalFontSize : Int
normalFontSize =
13
titleFontSize : Int
titleFontSize =
15
2020-10-04 13:15:57 +02:00
homeFontSize : Int
homeFontSize =
25
homePadding : Int
homePadding =
15