diff options
| author | Sam Wilkins <samwilkins333@gmail.com> | 2019-02-25 01:31:27 -0500 |
|---|---|---|
| committer | Sam Wilkins <samwilkins333@gmail.com> | 2019-02-25 01:31:27 -0500 |
| commit | 1a32bdca177faf5a3d99bcb45aaf596ba8c706a8 (patch) | |
| tree | 1f7531be1ae4032cbb5de0e54a9ae48fda9657cc /src/client/views/nodes/DocumentView.scss | |
| parent | b418a6ed64e50700e2935963f01e392cbd81099d (diff) | |
| parent | db7aa80be56e2d91acf224013b24ab73385f836c (diff) | |
Merge branch 'authentication' of https://github.com/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 |
