darabos commited on
Commit
db13d53
·
1 Parent(s): 8fbb3f9

Restore shadows. Allow large zoom anyway.

Browse files
lynxkite-app/web/src/index.css CHANGED
@@ -74,7 +74,7 @@ body {
74
  }
75
 
76
  .lynxkite-node {
77
- box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.3);
78
  border-radius: 4px;
79
  overflow: hidden;
80
  background: white;
@@ -100,7 +100,7 @@ body {
100
  }
101
 
102
  .node-group {
103
- box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.3);
104
  border-radius: 20px;
105
  border: none;
106
  background-color: white;
@@ -136,7 +136,7 @@ body {
136
  text-align: left;
137
  background: #fffa;
138
  color: black;
139
- box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
140
  backdrop-filter: blur(10px);
141
  font-size: 16px;
142
  font-weight: initial;
@@ -341,7 +341,7 @@ body {
341
 
342
  .comment-editor {
343
  width: 400px;
344
- box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.3);
345
  border-radius: 4px;
346
  padding: 5px 10px;
347
  border: 1px solid #ccc;
@@ -359,7 +359,7 @@ body {
359
  left: 50%;
360
  bottom: 20px;
361
  transform: translateX(-50%);
362
- box-shadow: 0 2px 10px 0px #8008;
363
  padding: 10px 40px 10px 20px;
364
  border-radius: 5px;
365
 
 
74
  }
75
 
76
  .lynxkite-node {
77
+ box-shadow: 0px 5px 50px 0px rgba(0, 0, 0, 0.3);
78
  border-radius: 4px;
79
  overflow: hidden;
80
  background: white;
 
100
  }
101
 
102
  .node-group {
103
+ box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.3);
104
  border-radius: 20px;
105
  border: none;
106
  background-color: white;
 
136
  text-align: left;
137
  background: #fffa;
138
  color: black;
139
+ box-shadow: 0px 5px 50px 0px rgba(0, 0, 0, 0.1);
140
  backdrop-filter: blur(10px);
141
  font-size: 16px;
142
  font-weight: initial;
 
341
 
342
  .comment-editor {
343
  width: 400px;
344
+ box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.3);
345
  border-radius: 4px;
346
  padding: 5px 10px;
347
  border: 1px solid #ccc;
 
359
  left: 50%;
360
  bottom: 20px;
361
  transform: translateX(-50%);
362
+ box-shadow: 0 5px 50px 0px #8008;
363
  padding: 10px 40px 10px 20px;
364
  border-radius: 5px;
365
 
lynxkite-app/web/src/workspace/Workspace.tsx CHANGED
@@ -517,7 +517,7 @@ function LynxKiteFlow() {
517
  onPaneClick={toggleNodeSearch}
518
  onConnect={onConnect}
519
  proOptions={{ hideAttribution: true }}
520
- maxZoom={4}
521
  minZoom={0.2}
522
  zoomOnScroll={false}
523
  panOnScroll={true}
 
517
  onPaneClick={toggleNodeSearch}
518
  onConnect={onConnect}
519
  proOptions={{ hideAttribution: true }}
520
+ maxZoom={10}
521
  minZoom={0.2}
522
  zoomOnScroll={false}
523
  panOnScroll={true}