From f2ecc1803f3ea294a0c6b7915b61348ed0395b26 Mon Sep 17 00:00:00 2001 From: Marcin Zelent Date: Wed, 16 Nov 2022 15:16:38 +0100 Subject: Remade and extended the app using React --- src/App.module.css | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/App.module.css (limited to 'src/App.module.css') diff --git a/src/App.module.css b/src/App.module.css new file mode 100644 index 0000000..075f53c --- /dev/null +++ b/src/App.module.css @@ -0,0 +1,43 @@ +.container { + width: 100%; + height: 100%; + display: flex; + overflow: hidden; +} + +.main { + height: 100%; + flex: 1 1 auto; +} + +.asideToggle { + display: none; +} + +@media only screen and (max-width: 500px) { + .asideToggle { + width: 36px; + height: 36px; + padding: 0; + border: 2px solid rgba(0, 0, 0, 0.2); + border-radius: 4px; + display: block; + position: absolute; + top: 10px; + left: 10px; + z-index: 999; + background-color: #fff; + background-clip: padding-box; + cursor: pointer; + user-select: none; + outline: currentcolor none medium; + } + + .asideToggle:hover { + background-color: #f4f4f4; + } + + .asideOpen { + left: 0; + } +} -- cgit v1.2.3