diff options
author | Gabriel Albo <gabriel@albo.com.br> | 2015-03-06 17:25:01 -0300 |
---|---|---|
committer | Gabriel Albo <gabriel@albo.com.br> | 2015-03-06 17:25:10 -0300 |
commit | fbc80ebd0cc08bb2d9cc350dc5dcce71d6222223 (patch) | |
tree | 7c9facd66317fa1b693db4a570eb770f22727a93 /web-ui/app | |
parent | bc3225efb7e21e413dd70eec7f6428e8447abfe7 (diff) |
*Really* sticking the logout to the bottom now :)
Diffstat (limited to 'web-ui/app')
-rw-r--r-- | web-ui/app/index.html | 4 | ||||
-rw-r--r-- | web-ui/app/scss/styles.scss | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/web-ui/app/index.html b/web-ui/app/index.html index dd6228cc..47116eb5 100644 --- a/web-ui/app/index.html +++ b/web-ui/app/index.html @@ -48,7 +48,9 @@ <i class="toggle fa fa-navicon"></i> </a> <nav id="tag-list"></nav> - <nav id="logout"></nav> + <div class="side-nav-bottom"> + <nav id="logout"></nav> + </div> </section> </div> </div> diff --git a/web-ui/app/scss/styles.scss b/web-ui/app/scss/styles.scss index 7b074b6d..8b873ddf 100644 --- a/web-ui/app/scss/styles.scss +++ b/web-ui/app/scss/styles.scss @@ -755,4 +755,10 @@ button { } } +div.side-nav-bottom { + width: 100%; + position: fixed; + bottom: 0; +} + @import "mascot.scss"; |