diff --git a/layout/bootstrap.moon b/layout/bootstrap.moon index 29874e4..b7bc2cb 100644 --- a/layout/bootstrap.moon +++ b/layout/bootstrap.moon @@ -55,12 +55,13 @@ class Layout extends Widget footer: => footer class: "footer", -> - p class: "text-muted", -> - text "Christine Cadence Dodrill - #{os.date "%Y"}" + div class: "container", -> + p class: "text-muted", -> + text "Christine Cadence Dodrill - #{os.date "%Y"}" - if os.getenv "GIT_REV" - text " - revision " - code "#{os.getenv("GIT_REV")\sub 1,8}" + if os.getenv "GIT_REV" + text " - revision " + code "#{os.getenv("GIT_REV")\sub 1,8}" body: => div class: "container", -> diff --git a/static/css/main.css b/static/css/main.css index 3f30f8b..eb1733b 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -49,10 +49,10 @@ table td { .footer { position: absolute; bottom: 0; + width: 100%; /* Set the fixed height of the footer here */ height: 60px; background-color: #F2E6EB; - max-width: 600px; }