Skip to content

Commit 28abe99

Browse files
committed
fix: size
Signed-off-by: Carlos Alexandro Becker <[email protected]>
1 parent acbd79d commit 28abe99

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func main() {
2727
log.SetHandler(text.New(os.Stderr))
2828
// log.SetLevel(log.DebugLevel)
2929
config := config.Get()
30-
ctx := log.WithField("port", config.Port)
30+
ctx := log.WithField("listen", config.Listen)
3131
options, err := redis.ParseURL(config.RedisURL)
3232
if err != nil {
3333
log.WithError(err).Fatal("invalid redis_url")

static/styles.css

+5
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,11 @@ div.title>span.subtitle {
8888
color: #555;
8989
}
9090

91+
div.main {
92+
width: 20%;
93+
max-width: 800px;
94+
}
95+
9196
div.main,
9297
div.code {
9398
padding-top: 30px;

0 commit comments

Comments
 (0)