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", "setexpr",
"SIDELIST", "SIDELIST",
"signup", "signup",
"simplebezier",
"Slng", "Slng",
"SMALLPR", "SMALLPR",
"Stylesheet", "Stylesheet",

View File

@ -143,7 +143,8 @@ This readme file is used mostly to document project dependencies and conventions
- 🚀 F: major feature implementation - 🚀 F: major feature implementation
- 💄 D: UI design - 💄 D: UI design
- 🚑 B: bug fix - 🔥 B: bug fix
- 🚑 M: Minor fixes
- 🔧 R: refactoring and code improvement - 🔧 R: refactoring and code improvement
- 📝 I: documentation - 📝 I: documentation

View File

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

View File

@ -83,7 +83,7 @@ function OssFlow({ isModified, setIsModified }: OssFlowProps) {
id: String(index), id: String(index),
source: String(argument.argument), source: String(argument.argument),
target: String(argument.operation), target: String(argument.operation),
type: edgeStraight ? 'straight' : 'bezier', type: edgeStraight ? 'straight' : 'simplebezier',
animated: edgeAnimate, animated: edgeAnimate,
targetHandle: targetHandle:
model.schema!.operationByID.get(argument.argument)!.position_x > model.schema!.operationByID.get(argument.argument)!.position_x >

View File

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