Skip to content

Commit

Permalink
finos#621 Fixed drag and drop bug in vizualizer
Browse files Browse the repository at this point in the history
  • Loading branch information
Adwoa-Konadu-Appiah committed Nov 22, 2024
1 parent 1622b3f commit ccefcd3
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions calm-visualizer/src/components/graph/Graph.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
border: 2px black solid;
text-align: center;
max-width: 15rem;
position: absolute;
}

.graph-labels {
Expand All @@ -20,6 +21,10 @@
max-width: 250px;
}

h1 {
font-size: 1.2rem;
}

.node-type {
color: gray;
font-size: 0.9rem;
Expand All @@ -32,11 +37,16 @@
.group-container {
border: 2px gray dashed !important;
background-color: aliceblue;
max-width: max-content;
padding: 5rem;
min-width: max-content;
flex-direction: column;
box-sizing: border-box;
padding: 15%;
display: grid;
grid-template-columns: repeat(3, 1fr);
row-gap: auto;
}

.group-node {
border: 2px rgb(180, 178, 178) solid;
position: relative;
box-sizing: border-box;
}

0 comments on commit ccefcd3

Please sign in to comment.