diff --git a/.vscode/settings.json b/.vscode/settings.json index 90b939b8..dc348a26 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -142,6 +142,7 @@ "setexpr", "SIDELIST", "signup", + "simplebezier", "Slng", "SMALLPR", "Stylesheet", diff --git a/README.md b/README.md index 0cd1c179..65286a93 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,8 @@ This readme file is used mostly to document project dependencies and conventions - 🚀 F: major feature implementation - 💄 D: UI design -- 🚑 B: bug fix +- 🔥 B: bug fix +- 🚑 M: Minor fixes - 🔧 R: refactoring and code improvement - 📝 I: documentation diff --git a/rsconcept/frontend/src/index.css b/rsconcept/frontend/src/index.css index 94dd8900..3c03a2f4 100644 --- a/rsconcept/frontend/src/index.css +++ b/rsconcept/frontend/src/index.css @@ -1,4 +1,3 @@ @import 'styling/setup.css'; -@import 'styling/styles.css'; -@import 'styling/imports.css'; @import 'styling/overrides.css'; +@import 'styling/styles.css'; diff --git a/rsconcept/frontend/src/pages/OssPage/EditorOssGraph/OssFlow.tsx b/rsconcept/frontend/src/pages/OssPage/EditorOssGraph/OssFlow.tsx index d7421dcf..0b18fd12 100644 --- a/rsconcept/frontend/src/pages/OssPage/EditorOssGraph/OssFlow.tsx +++ b/rsconcept/frontend/src/pages/OssPage/EditorOssGraph/OssFlow.tsx @@ -83,7 +83,7 @@ function OssFlow({ isModified, setIsModified }: OssFlowProps) { id: String(index), source: String(argument.argument), target: String(argument.operation), - type: edgeStraight ? 'straight' : 'bezier', + type: edgeStraight ? 'straight' : 'simplebezier', animated: edgeAnimate, targetHandle: model.schema!.operationByID.get(argument.argument)!.position_x > diff --git a/rsconcept/frontend/src/styling/overrides.css b/rsconcept/frontend/src/styling/overrides.css index 9f6cf22d..90e5f4cc 100644 --- a/rsconcept/frontend/src/styling/overrides.css +++ b/rsconcept/frontend/src/styling/overrides.css @@ -1,6 +1,8 @@ /** * Module: Override imported components CSS styling. */ +@import './constants.css'; +@import './imports.css'; :root { /* Import overrides */