Bump version and adjust CSS
This commit is contained in:
parent
7c55b96cf1
commit
21e317955a
4 changed files with 7 additions and 4 deletions
|
@ -1,6 +1,10 @@
|
|||
# Changelog
|
||||
This file keeps track of changes in more human-readable fashion
|
||||
|
||||
## v1.1.0
|
||||
* You can now specify the Telegram *topic* to send notification to via `tg_topic` config key (By Rithas K.!)
|
||||
* The Telegram message is now partially translated
|
||||
* Fixed CSS `margin` and `text-align` inherited from my website
|
||||
## v1.0.0
|
||||
This release includes several **breaking** changes
|
||||
* Made a new favicon
|
||||
|
|
2
info.go
2
info.go
|
@ -15,7 +15,7 @@ type AppInfo struct {
|
|||
|
||||
// Info contains app information
|
||||
var Info = AppInfo{
|
||||
Version: "1.0.0",
|
||||
Version: "1.1.0",
|
||||
SourceLink: "https://git.a71.su/Andrew71/hibiscus",
|
||||
}
|
||||
|
||||
|
|
|
@ -28,11 +28,10 @@
|
|||
body {
|
||||
color: var(--text-light);
|
||||
background-color: var(--bg-light);
|
||||
margin: 2em auto;
|
||||
margin: auto auto;
|
||||
max-width: 640px;
|
||||
padding: 1em;
|
||||
line-height: 1.4;
|
||||
text-align: justify;
|
||||
font-family: serif;
|
||||
min-height: 85vh;
|
||||
display: flex;
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
}
|
||||
],
|
||||
"start_url": "/",
|
||||
"display": "minimal-ui",
|
||||
"display": "fullscreen",
|
||||
"scope": "/",
|
||||
"background_color": "#f5f0e1",
|
||||
"theme_color": "#f85552"
|
||||
|
|
Loading…
Reference in a new issue