-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2ab205a
commit 2a532f9
Showing
5 changed files
with
61 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,28 @@ | ||
{ | ||
"type": "application", | ||
"source-directories": ["src", ".elm-land/src", "../src"], | ||
"elm-version": "0.19.1", | ||
"dependencies": { | ||
"direct": { | ||
"elm/browser": "1.0.2", | ||
"elm/core": "1.0.5", | ||
"elm/html": "1.0.0", | ||
"elm/json": "1.1.3", | ||
"elm/url": "1.0.0", | ||
"hmsk/elm-vite-plugin-helper": "1.0.1", | ||
"mdgriffith/elm-ui": "1.1.8", | ||
"vladimirlogachev/elm-modular-grid": "2.0.1" | ||
"type": "application", | ||
"source-directories": [ | ||
"src", | ||
".elm-land/src", | ||
"../src" | ||
], | ||
"elm-version": "0.19.1", | ||
"dependencies": { | ||
"direct": { | ||
"elm/browser": "1.0.2", | ||
"elm/core": "1.0.5", | ||
"elm/html": "1.0.0", | ||
"elm/json": "1.1.3", | ||
"elm/url": "1.0.0", | ||
"mdgriffith/elm-ui": "1.1.8", | ||
"vladimirlogachev/elm-modular-grid": "2.0.1" | ||
}, | ||
"indirect": { | ||
"elm/time": "1.0.0", | ||
"elm/virtual-dom": "1.0.3" | ||
} | ||
}, | ||
"indirect": { | ||
"elm/time": "1.0.0", | ||
"elm/virtual-dom": "1.0.3" | ||
"test-dependencies": { | ||
"direct": {}, | ||
"indirect": {} | ||
} | ||
}, | ||
"test-dependencies": { | ||
"direct": {}, | ||
"indirect": {} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,14 @@ | ||
module TextStyle exposing (body, headerMobile, subheaderMobile) | ||
module TextStyle exposing (body, header) | ||
|
||
import Element exposing (..) | ||
import Element.Font as Font | ||
|
||
|
||
headerMobile : List (Attribute msg) | ||
headerMobile = | ||
header : List (Attribute msg) | ||
header = | ||
[ Font.size 55, Font.bold, Font.family [ Font.typeface "Inter", Font.sansSerif ] ] | ||
|
||
|
||
subheaderMobile : List (Attribute msg) | ||
subheaderMobile = | ||
[ Font.size 34, Font.medium, Font.family [ Font.typeface "Inter", Font.sansSerif ] ] | ||
|
||
|
||
body : List (Attribute msg) | ||
body = | ||
[ Font.size 20, Font.regular, Font.family [ Font.typeface "Inter", Font.sansSerif ] ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters