diff options
| author | Zachary Zhang <zacharyzhang7@gmail.com> | 2024-06-10 15:01:05 -0400 |
|---|---|---|
| committer | Zachary Zhang <zacharyzhang7@gmail.com> | 2024-06-10 15:01:05 -0400 |
| commit | 1d9a9f05acc1bae66b65f73246741d17f7a51186 (patch) | |
| tree | a14462bac92a570968fa4bf887ee3d2aecadb26b /src/client/views/nodes/DiagramBox.scss | |
| parent | 6cce041a907ba2c4721a9202218169d3f5db09c2 (diff) | |
draft of ui update
Diffstat (limited to 'src/client/views/nodes/DiagramBox.scss')
| -rw-r--r-- | src/client/views/nodes/DiagramBox.scss | 32 |
1 files changed, 27 insertions, 5 deletions
diff --git a/src/client/views/nodes/DiagramBox.scss b/src/client/views/nodes/DiagramBox.scss index b3d50a4bd..64b0e6c0e 100644 --- a/src/client/views/nodes/DiagramBox.scss +++ b/src/client/views/nodes/DiagramBox.scss @@ -3,9 +3,27 @@ height: 100%; display: flex; flex-direction: column; - align-items: center; - justify-content: center; - + .buttonCollections{ + display: flex; + justify-content: center; + flex-direction: column; + height:100%; + button{ + font-size:10px; + margin:5px; + height:100%; + width:30%; + border: none; + border-radius: 5px; + cursor: pointer; + background-color: #007bff; + color: #fff; + transition: background-color 0.3s ease; + } + button:hover { + background-color: #0056b3; + } + } .DiagramBox-wrapper { width: 100%; height: 100%; @@ -13,6 +31,11 @@ flex-direction: column; align-items: center; justify-content: center; + .backButton{ + position: absolute; + top:0; + left:0; + } .search-bar { display: flex; flex-wrap: wrap; @@ -23,10 +46,9 @@ textarea { flex: 1; - height:5px; + height: 5px; margin-right: 10px; min-height: 20px; - height:auto; resize:none; overflow: hidden; } |
