diff options
| author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-02-25 01:22:40 -0500 |
|---|---|---|
| committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-02-25 01:22:40 -0500 |
| commit | 80a2f5540af2aae49685de09a2b94f216f10f0d7 (patch) | |
| tree | b9ed70d2d176e31e9d69312dd2587ed13165832f /src/client/views/nodes/DocumentView.scss | |
| parent | 62e06a2c9ce5054777a7a790e5b03b96d3cd6425 (diff) | |
| parent | 41ff4813ddd9e6094d7d609c5960e1a614e00d7f (diff) | |
Merge branch 'master' of github-tsch-brown:browngraphicslab/Dash-Web into authentication
Diffstat (limited to 'src/client/views/nodes/DocumentView.scss')
| -rw-r--r-- | src/client/views/nodes/DocumentView.scss | 23 |
1 files changed, 23 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..8e2ebd690 --- /dev/null +++ b/src/client/views/nodes/DocumentView.scss @@ -0,0 +1,23 @@ +.documentView-node { + position: absolute; + background: #cdcdcd; + overflow: hidden; + &.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 |
