Skip to content

Commit

Permalink
Remove border in mobile view, add screenshots to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ad-si committed Sep 20, 2023
1 parent bcf7f9d commit bd84ab7
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 5 deletions.
8 changes: 6 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@ help: makefile
@tail -n +4 makefile | grep ".PHONY"


node_modules: package.json package-lock.json
if test ! -d $@; then npm install; fi


.PHONY: start
start:
start: node_modules elm.json elm-land.json
npx elm-land server


dist: elm.json elm-land.json $(shell find src) $(shell find static)
dist: node_modules elm.json elm-land.json $(shell find src) $(shell find static)
npx elm-land build
touch dist # Update timestamp

Expand Down
26 changes: 25 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,33 @@

Sheet music management app powered by Airsequel, Elm Land, and Tailwind.

<table>
<tr>
<td>
<strong>Landing Page</strong>
<br/>
<br/>
<img src="screenshots/2023-09-20_landing_page.png" />
</td>
<td>
<strong>Song View</strong>
<br/>
<br/>
<img src="screenshots/2023-09-20_song_view.png" />
</td>
</tr>
</table>

<div>
<strong>Play View</strong>
<br/>
<br/>
<img src="screenshots/2023-09-20_play_view_horizontal.png" />
</div>


## Development

```sh
npx elm-land@latest server
make start
```
Binary file added screenshots/2023-09-20_landing_page.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/2023-09-20_play_view_horizontal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/2023-09-20_song_view.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/Layouts/Default.elm
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ view settings { content } =
, max_w_5xl
, mx_auto
, min_h_full
, border_x
, border_color gray_400
, lg [ border_x ]
]
]
[ Css.Global.global globalStyles
Expand Down
2 changes: 1 addition & 1 deletion src/Pages/Home_.elm
Original file line number Diff line number Diff line change
Expand Up @@ -422,8 +422,8 @@ view sharedModel model =
, max_w_5xl
, mx_auto
, min_h_full
, border_x
, border_color gray_400
, lg [ border_x ]
]
]
[ Css.Global.global globalStyles
Expand Down

0 comments on commit bd84ab7

Please sign in to comment.