From 3a95d7b7fc65c73e3f1b47f931aa98522a7294eb Mon Sep 17 00:00:00 2001 From: MayteApolix <83069108+MayteApolix@users.noreply.github.com> Date: Mon, 17 Jan 2022 01:38:58 +0100 Subject: Change minimum screen resolution --- draughts/public/stylesheets/style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/draughts/public/stylesheets/style.css b/draughts/public/stylesheets/style.css index 9813ae0..71c991a 100644 --- a/draughts/public/stylesheets/style.css +++ b/draughts/public/stylesheets/style.css @@ -10,8 +10,9 @@ } -/* Ensures a minimum screen resolution of 800 x 800*/ -@media (max-width: 799px), (max-height: 799px) { + +/* Ensures a minimum screen resolution of 1366x768*/ +@media (max-width: 1366px), (max-height: 768px) { body::before { position: absolute; top: 0; -- cgit v1.2.3