From c61278f1adeb833a84c567be195f4ffce3b3424f Mon Sep 17 00:00:00 2001 From: Sam Vendittelli Date: Fri, 1 Apr 2016 23:23:44 +0100 Subject: [PATCH] Fixed cursor appearing in margin Cursor was appearing in the margin so moved `cursor: none` property to html. --- css/main.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/css/main.css b/css/main.css index d50e9f2c..ebb537a4 100644 --- a/css/main.css +++ b/css/main.css @@ -1,5 +1,8 @@ -body { +html { cursor: none; +} + +body { margin: 60px; position: absolute; height: calc(100% - 120px);