diff options
author | MayteApolix <83069108+MayteApolix@users.noreply.github.com> | 2022-01-17 01:38:58 +0100 |
---|---|---|
committer | MayteApolix <83069108+MayteApolix@users.noreply.github.com> | 2022-01-17 01:38:58 +0100 |
commit | 3a95d7b7fc65c73e3f1b47f931aa98522a7294eb (patch) | |
tree | a74a2a457ef693c46eb562f9288a390d84494923 | |
parent | 699e60cf860aa0651f02c44d498404ee241c7067 (diff) |
Change minimum screen resolution
-rw-r--r-- | draughts/public/stylesheets/style.css | 5 |
1 files 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; |