From 9ccd7e4fb3b15f1a13bfa59907b7be04fc690fa1 Mon Sep 17 00:00:00 2001 From: Cristhian Zanforlin Lousa Date: Tue, 13 Jun 2023 21:03:25 -0300 Subject: [PATCH] adding background muted and subtitle texts changes --- .../components/codeAreaComponent/index.tsx | 2 +- .../src/components/floatComponent/index.tsx | 19 +++++++++++++++++-- .../src/components/inputComponent/index.tsx | 16 ++++++++++++---- .../components/inputListComponent/index.tsx | 3 ++- .../src/components/intComponent/index.tsx | 12 ++++++++++-- .../components/textAreaComponent/index.tsx | 2 +- src/frontend/src/constants.tsx | 17 ++++++++++------- src/frontend/src/modals/ApiModal/index.tsx | 2 +- .../src/modals/EditNodeModal/index.tsx | 6 +++--- .../src/modals/codeAreaModal/index.tsx | 2 +- src/frontend/src/modals/exportModal/index.tsx | 2 +- .../src/modals/genericModal/index.tsx | 2 +- src/frontend/src/modals/importModal/index.tsx | 8 ++++---- .../extraSidebarComponent/index.tsx | 2 +- src/frontend/src/utils.ts | 2 +- 15 files changed, 66 insertions(+), 31 deletions(-) diff --git a/src/frontend/src/components/codeAreaComponent/index.tsx b/src/frontend/src/components/codeAreaComponent/index.tsx index b1c907998..6f4af1635 100644 --- a/src/frontend/src/components/codeAreaComponent/index.tsx +++ b/src/frontend/src/components/codeAreaComponent/index.tsx @@ -45,7 +45,7 @@ export default function CodeAreaComponent({ (disabled ? " bg-gray-200" : "") } > - {myValue !== "" ? myValue : "Text empty"} + {myValue !== "" ? myValue : "Type something..."} @@ -176,7 +176,7 @@ export default function ImportModal() { -
+
-
+
) { return classes.filter(Boolean).join(" "); } -export const limitScrollFieldsModal = 7; +export const limitScrollFieldsModal = 10; export enum TypeModal { TEXT = 1,