diff options
| author | Stanley Yip <stanley_yip@brown.edu> | 2020-02-04 18:12:47 -0500 |
|---|---|---|
| committer | Stanley Yip <stanley_yip@brown.edu> | 2020-02-04 18:12:47 -0500 |
| commit | 1007cfb325f2dcddc4365538e4b354d06eb85f2f (patch) | |
| tree | 62fb6a253e6940cadfe24aa8e96ba9f16b68ad9b /src/client/views/GestureOverlay.scss | |
| parent | dab8f5893ffb8fab05a46695b9d1a690d1171bca (diff) | |
ok so the toolglass is working, but it's super slow... i'll fix that later lol
Diffstat (limited to 'src/client/views/GestureOverlay.scss')
| -rw-r--r-- | src/client/views/GestureOverlay.scss | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/client/views/GestureOverlay.scss b/src/client/views/GestureOverlay.scss index 60b53c528..f425c438e 100644 --- a/src/client/views/GestureOverlay.scss +++ b/src/client/views/GestureOverlay.scss @@ -16,11 +16,13 @@ .inkToTextDoc-cont { position: absolute; width: 300px; - height: 300px; overflow: hidden; .inkToTextDoc-scroller { overflow: visible; + position: absolute; + width: 100%; + left: -24px; .collectionView { overflow: visible; @@ -30,6 +32,15 @@ } } } + + .shadow { + width: 100%; + height: calc(100% - 25px); + position: absolute; + top: 25px; + background-color: black; + opacity: 0.2; + } } .filter-cont { |
