diff options
| author | Monika Hedman <monika_hedman@brown.edu> | 2019-04-01 22:04:42 -0400 |
|---|---|---|
| committer | Monika Hedman <monika_hedman@brown.edu> | 2019-04-01 22:04:42 -0400 |
| commit | 945fb1c28fa94ee1d2448381d7dd55b99214aad4 (patch) | |
| tree | 21226d9b0f4e7a4e593f01c7a7d77890aef1391a /src/client/views/nodes/DocumentView.scss | |
| parent | dd561b6b81a2832972d15e6226327a49ec1cdf06 (diff) | |
icon not working
Diffstat (limited to 'src/client/views/nodes/DocumentView.scss')
| -rw-r--r-- | src/client/views/nodes/DocumentView.scss | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.scss b/src/client/views/nodes/DocumentView.scss index 85a115f1c..4eda50204 100644 --- a/src/client/views/nodes/DocumentView.scss +++ b/src/client/views/nodes/DocumentView.scss @@ -1,23 +1,39 @@ @import "../global_variables"; + .documentView-node { position: absolute; background: $light-color; //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); } -} + + .minimized-box { + height: 10px; + width: 10px; + border-radius: 2px; + background: #232323 + } + + .minimized-box:hover { + background: #232323 + } +}
\ No newline at end of file |
