Skip to content

Commit 9e3db69

Browse files
committed
Set max-width for about.html
so that it looks nicer on uber-wide desktop screens. Inconsequential on mobile.
1 parent 261b704 commit 9e3db69

3 files changed

Lines changed: 9 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
- Made app main activity theme dark
77
- Made `about.html` show full screen
8+
- Set `max-width` for `about.html`
89

910

1011
## [v0.5.1] Visual improvements (2021-07-13)

app/src/main/assets/about.cmd

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@
2727
h3 {
2828
font-size: 1.1em;
2929
}
30+
html {
31+
margin: 0 auto;
32+
max-width: 44em;
33+
}
3034
.notice {
3135
border: 1px solid black;
3236
padding: 0.5em;

app/src/main/assets/about.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@
2626
h3 {
2727
font-size: 1.1em;
2828
}
29+
html {
30+
margin: 0 auto;
31+
max-width: 44em;
32+
}
2933
.notice {
3034
border: 1px solid black;
3135
padding: 0.5em;

0 commit comments

Comments
 (0)