diff options
author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-07-14 20:32:10 -0400 |
---|---|---|
committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-07-14 20:32:10 -0400 |
commit | d1afda33e938dd8b86074583fe13f786caf05772 (patch) | |
tree | 0a8c564579364cc2f7b06450f1647db96ec6ac6f | |
parent | 66f0d72f07d3cf28e01abd0d9b2659c951defcd9 (diff) |
Fixed part of doc decs scrolling
-rw-r--r-- | src/client/views/MainOverlayTextBox.scss | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/client/views/MainOverlayTextBox.scss b/src/client/views/MainOverlayTextBox.scss index f636ca070..c9d44e194 100644 --- a/src/client/views/MainOverlayTextBox.scss +++ b/src/client/views/MainOverlayTextBox.scss @@ -1,24 +1,28 @@ @import "globalCssVariables"; + .mainOverlayTextBox-textInput { background-color: rgba(248, 6, 6, 0.001); width: 400px; height: 200px; - position:absolute; + position: absolute; overflow: visible; top: 0; left: 0; - pointer-events: none; + pointer-events: none; z-index: $mainTextInput-zindex; + .formattedTextBox-cont { background-color: rgba(248, 6, 6, 0.001); width: 100%; height: 100%; - position:absolute; + position: absolute; top: 0; left: 0; } } -.mainOverlayTextBox-.unscaled_div{ + +.mainOverlayTextBox-unscaled_div { + // width: 0px; z-index: 10000; position: absolute; pointer-events: none; |