From ab69dff04daf9f0d9b7a1da558287898c2eeba92 Mon Sep 17 00:00:00 2001 From: He4eT Date: Sun, 28 Feb 2021 22:19:50 +0500 Subject: [PATCH] Add desktop styles --- src/style/base.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/style/base.css b/src/style/base.css index 6d17542..d27bb66 100644 --- a/src/style/base.css +++ b/src/style/base.css @@ -7,13 +7,27 @@ html, body { body { display: flex; flex-direction: column; + justify-content: center; + align-items: center; font-size: 18px; line-height: 27px; + } #root { + flex: 1 1 auto; + height: 100%; + width: 100%; +} +@media (min-width: 800px) { + #root { + height: 90%; + max-height: 90%; + + max-width: 800px; + } } .app {