From 35a2671525c5597766c5c1d0fa7f036a63454154 Mon Sep 17 00:00:00 2001 From: Johann Schmitz Date: Wed, 13 Jul 2016 15:39:59 +0200 Subject: [PATCH] Use overflow-y: scoll on html element to avoid jumping around when the previous/next page adds a vertical scrollbar. --- netbox/project-static/css/base.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/netbox/project-static/css/base.css b/netbox/project-static/css/base.css index b1a9e88c3..9f4bb5e24 100644 --- a/netbox/project-static/css/base.css +++ b/netbox/project-static/css/base.css @@ -2,6 +2,9 @@ * { margin: 0; } +html { + overflow-y: scroll; +} html, body { height: 100%; }