mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
M: Minor fixes
This commit is contained in:
parent
4f9b48cce5
commit
69ee70e61f
1
.vscode/settings.json
vendored
1
.vscode/settings.json
vendored
|
@ -142,6 +142,7 @@
|
||||||
"setexpr",
|
"setexpr",
|
||||||
"SIDELIST",
|
"SIDELIST",
|
||||||
"signup",
|
"signup",
|
||||||
|
"simplebezier",
|
||||||
"Slng",
|
"Slng",
|
||||||
"SMALLPR",
|
"SMALLPR",
|
||||||
"Stylesheet",
|
"Stylesheet",
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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 >
|
||||||
|
|
|
@ -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 */
|
||||||
|
|
Loading…
Reference in New Issue
Block a user