Skip to content

Commit

Permalink
fix: size
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
  • Loading branch information
caarlos0 committed Jul 31, 2021
1 parent acbd79d commit 28abe99
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func main() {
log.SetHandler(text.New(os.Stderr))
// log.SetLevel(log.DebugLevel)
config := config.Get()
ctx := log.WithField("port", config.Port)
ctx := log.WithField("listen", config.Listen)
options, err := redis.ParseURL(config.RedisURL)
if err != nil {
log.WithError(err).Fatal("invalid redis_url")
Expand Down
5 changes: 5 additions & 0 deletions static/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,11 @@ div.title>span.subtitle {
color: #555;
}

div.main {
width: 20%;
max-width: 800px;
}

div.main,
div.code {
padding-top: 30px;
Expand Down

0 comments on commit 28abe99

Please sign in to comment.