diff options
Diffstat (limited to 'views')
| -rw-r--r-- | views/page.gohtml | 8 | ||||
| -rw-r--r-- | views/static/style.css | 5 |
2 files changed, 8 insertions, 5 deletions
diff --git a/views/page.gohtml b/views/page.gohtml index 5eb49ac..80ff95b 100644 --- a/views/page.gohtml +++ b/views/page.gohtml @@ -5,7 +5,9 @@ <p>{{ . }}</p> {{ end }} - {{ range .Options }} - <a href="/{{ .Arc }}">{{ .Text }}</a> - {{ end }} + <div class="options"> + {{ range .Options }} + <a href="/{{ .Arc }}">{{ .Text }}</a> + {{ end }} + </div> {{ end }} diff --git a/views/static/style.css b/views/static/style.css index ec71292..44caf6a 100644 --- a/views/static/style.css +++ b/views/static/style.css @@ -1,3 +1,4 @@ -a { - color: red; +.options { + display: flex; + flex-direction: column;xp } |
