diff options
author | Stanley Yip <33562077+yipstanley@users.noreply.github.com> | 2020-01-20 17:30:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-20 17:30:37 -0500 |
commit | 65c0769d420841765cb9545a4c99213c4433e7af (patch) | |
tree | cec7e1ea69596513c373c2245610b5e4a679da56 /src/client/views/MainView.scss | |
parent | cc2cbf44ba5c30a70bad2ffd7a57d2c6d17d0e4e (diff) | |
parent | 758d960b4251672c9615b0bf53ea992065ca524b (diff) |
Merge pull request #331 from browngraphicslab/pen
Pen
Diffstat (limited to 'src/client/views/MainView.scss')
-rw-r--r-- | src/client/views/MainView.scss | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/src/client/views/MainView.scss b/src/client/views/MainView.scss index 4c8c95529..d39c217ec 100644 --- a/src/client/views/MainView.scss +++ b/src/client/views/MainView.scss @@ -9,8 +9,8 @@ .mainContent-div { position: relative; - width:100%; - height:100%; + width: 100%; + height: 100%; } // add nodes menu. Note that the + button is actually an input label, not an actual button. @@ -28,6 +28,7 @@ top: 0; left: 0; z-index: 1; + touch-action: none; } .mainView-mainContent { @@ -57,16 +58,32 @@ overflow: hidden; } + +.mainView-settings { + position: absolute; + left: 0; + bottom: 0; + font-size: 8px; +} + +.mainView-settings:hover { + transform: none !important; +} + .mainView-logout { position: absolute; - right: 5; - bottom: 5; + right: 0; + bottom: 0; font-size: 8px; } +.mainView-logout:hover { + transform: none !important; +} + .mainView-libraryFlyout { height: 100%; - width:100%; + width: 100%; position: absolute; display: flex; flex-direction: column; |