diff options
| author | Monika Hedman <monika_hedman@brown.edu> | 2019-02-18 19:03:34 -0500 |
|---|---|---|
| committer | Monika Hedman <monika_hedman@brown.edu> | 2019-02-18 19:03:34 -0500 |
| commit | eaeb373ed90d35ab1c29cd9c3e4a79f6c8fa30b0 (patch) | |
| tree | 2adb423bf0f782fce6861d703114bc0140520766 /src/client/views/nodes/DocumentView.scss | |
| parent | 30986620c34c93e12509b2875e90cf5876838403 (diff) | |
| parent | 842f571bfb4952d12804a8dbdc66aedbf2bf6b81 (diff) | |
transforms update
Diffstat (limited to 'src/client/views/nodes/DocumentView.scss')
| -rw-r--r-- | src/client/views/nodes/DocumentView.scss | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/client/views/nodes/DocumentView.scss b/src/client/views/nodes/DocumentView.scss new file mode 100644 index 000000000..5f7e6ff17 --- /dev/null +++ b/src/client/views/nodes/DocumentView.scss @@ -0,0 +1,25 @@ +.documentView-node { + position: absolute; + background: #cdcdcd; + overflow: hidden; + border-style: solid; + border-width: 2px; //border-color: blue; + &.minimized { + width: 30px; + height: 30px; + } + .top { + background: #232323; + height: 20px; + cursor: pointer; + } + .content { + padding: 20px 20px; + height: auto; + box-sizing: border-box; + } + .scroll-box { + overflow-y: scroll; + height: calc(100% - 20px); + } +}
\ No newline at end of file |
