diff options
| author | Lucas Verney <phyks@phyks.me> | 2017-06-11 13:33:22 -0400 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2017-06-11 19:33:22 +0200 |
| commit | 32f2339c478d9f1f756780ddf7d7d188cc0e5f67 (patch) | |
| tree | 420b15ae1e8ee0e3f0708e04d2c07be480dedbce /budget/static/css | |
| parent | ea8eda35a7bd831964c38b38cc9a5b19bcb44d6a (diff) | |
| download | ihatemoney-mirror-32f2339c478d9f1f756780ddf7d7d188cc0e5f67.zip ihatemoney-mirror-32f2339c478d9f1f756780ddf7d7d188cc0e5f67.tar.gz ihatemoney-mirror-32f2339c478d9f1f756780ddf7d7d188cc0e5f67.tar.bz2 | |
More responsive layout (#213)
Fix navbar responsiveness on mobile.
Diffstat (limited to 'budget/static/css')
| -rw-r--r-- | budget/static/css/main.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/budget/static/css/main.css b/budget/static/css/main.css index 11963d2..54a0008 100644 --- a/budget/static/css/main.css +++ b/budget/static/css/main.css @@ -74,7 +74,12 @@ body { background-repeat: no-repeat; height: 100%; color: black; - position: fixed; +} + +@media (min-width: 768px) { + .sidebar { + position: fixed; + } } #add-member-form { padding-top: 1em; padding-bottom: 1em; } |
