diff options
| author | Philipp Eichmann <philipp.eichmann@gmail.com> | 2018-12-21 18:45:24 -0500 |
|---|---|---|
| committer | Philipp Eichmann <philipp.eichmann@gmail.com> | 2018-12-21 18:45:24 -0500 |
| commit | 06098b7bdd6a83f6b9cc07d2377f2a19cc0ecaa6 (patch) | |
| tree | d665964243f9949424555175711e27166e96f70e /src/views/nodes/NodeView.scss | |
| parent | 9caa9ca4a0b413e2da03eff4856cb324939d77d4 (diff) | |
added code
Diffstat (limited to 'src/views/nodes/NodeView.scss')
| -rw-r--r-- | src/views/nodes/NodeView.scss | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/views/nodes/NodeView.scss b/src/views/nodes/NodeView.scss new file mode 100644 index 000000000..2dfdee6fa --- /dev/null +++ b/src/views/nodes/NodeView.scss @@ -0,0 +1,33 @@ +.node { + position: absolute; + background: #cdcdcd; + + width: 300px; + height: 300px; + 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); + } +} + |
