From 4b7b6fe5abe962773a279208cc0ba983b4feb895 Mon Sep 17 00:00:00 2001 From: Hareesh Date: Mon, 1 May 2023 23:45:44 +0530 Subject: [PATCH] Disallow units for 0 values in qunit.css Implemented recommendation from CSS Validator --- src/qunit.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/qunit.css b/src/qunit.css index b247ec104..5d06016cf 100644 --- a/src/qunit.css +++ b/src/qunit.css @@ -45,10 +45,10 @@ @media (min-height: 500px) { #qunit { position: fixed; - left: 0px; - right: 0px; - top: 0px; - bottom: 0px; + left: 0; + right: 0; + top: 0; + bottom: 0; padding: 8px; display: -webkit-box; display: flex;