diff options
| author | Zachary Zhang <zacharyzhang7@gmail.com> | 2024-06-06 15:18:42 -0400 |
|---|---|---|
| committer | Zachary Zhang <zacharyzhang7@gmail.com> | 2024-06-06 15:18:42 -0400 |
| commit | 551ef2a117325faf90fd9f8087e9ffba39f7322e (patch) | |
| tree | 8fb3bf54a383fd03258cdfb8e41115f113cdd425 /src/client/views/nodes/DiagramBox.scss | |
| parent | 202e994515392892676f8f080852db1e32b8dbd3 (diff) | |
bug fixes
Diffstat (limited to 'src/client/views/nodes/DiagramBox.scss')
| -rw-r--r-- | src/client/views/nodes/DiagramBox.scss | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/src/client/views/nodes/DiagramBox.scss b/src/client/views/nodes/DiagramBox.scss index d2749f1ad..58a98cc59 100644 --- a/src/client/views/nodes/DiagramBox.scss +++ b/src/client/views/nodes/DiagramBox.scss @@ -1,4 +1,4 @@ -.DIYNodeBox { +.DiagramBox { width: 100%; height: 100%; display: flex; @@ -6,7 +6,7 @@ align-items: center; justify-content: center; - .DIYNodeBox-wrapper { + .DiagramBox-wrapper { width: 100%; height: 100%; display: flex; @@ -26,18 +26,27 @@ .search-bar { display: flex; + flex-wrap: wrap; justify-content: center; align-items: center; width: 100%; padding: 10px; - input[type="text"] { + textarea { flex: 1; + height:5px; margin-right: 10px; + min-height: 20px; + height:auto; + resize:none; + overflow: hidden; } button { padding: 5px 10px; + width:80px; + height:30px; + border-radius: 10px; } } @@ -56,18 +65,16 @@ width:100%; height:100%; svg{ - flex: 1; - display: flex; - justify-content: center; - align-items: center; - width:100%; - height:100%; + max-width: none !important; } } } .loading-circle { - position: relative; + position: absolute; + display:flex; + align-items: center; + justify-content: center; width: 50px; height: 50px; border-radius: 50%; |
