Skip to content

Commit 7410b45

Browse files
committed
Fix
1 parent 72fbbf1 commit 7410b45

3 files changed

Lines changed: 10 additions & 12 deletions

File tree

frontend/src/assets/main.css

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@ body {
44
}
55

66
:root {
7-
--color-primary: #5294FD; */
8-
--color-secondary: #DCEBFE;
9-
/* --color-primary: #ffdb58;
10-
--color-secondary: #ffdb58; */
11-
--color-success: #B8FD9F;
7+
--color-primary: #5294fd;
8+
--color-secondary: #dcebfe;
9+
--color-success: #b8fd9f;
1210
--color-danger: #ff6b6b;
1311
--color-background: #f4f4f0;
14-
}
12+
}

frontend/src/components/modal/GlobalModal.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ function close() {
6969
display: flex;
7070
flex-direction: column;
7171
background-color: var(--color-secondary);
72-
7372
}
7473
7574
.modal-header {

frontend/src/components/schema_editor/SchemaEditor.vue

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@
88
</div>
99

1010
<div class="vue-flow-viewport">
11-
<VueFlow
12-
v-model:nodes="projectStore.nodes"
13-
v-model:edges="projectStore.edges"
14-
:default-viewport="{ zoom: 2 }"
15-
:max-zoom="2" :min-zoom="0.1"
11+
<VueFlow
12+
v-model:nodes="projectStore.nodes"
13+
v-model:edges="projectStore.edges"
14+
:default-viewport="{ zoom: 2 }"
15+
:max-zoom="2"
16+
:min-zoom="0.1"
1617
:fit-view-on-init="true"
1718
:snap-to-grid="true"
1819
>

0 commit comments

Comments
 (0)