M: Minor fixes

This commit is contained in:
Ivan 2024-07-27 22:49:49 +03:00
parent 4f9b48cce5
commit 69ee70e61f
5 changed files with 7 additions and 4 deletions

View File

@ -142,6 +142,7 @@
"setexpr",
"SIDELIST",
"signup",
"simplebezier",
"Slng",
"SMALLPR",
"Stylesheet",

View File

@ -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

View File

@ -1,4 +1,3 @@
@import 'styling/setup.css';
@import 'styling/styles.css';
@import 'styling/imports.css';
@import 'styling/overrides.css';
@import 'styling/styles.css';

View File

@ -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 >

View File

@ -1,6 +1,8 @@
/**
* Module: Override imported components CSS styling.
*/
@import './constants.css';
@import './imports.css';
:root {
/* Import overrides */