Skip to content

Commit 65f846f

Browse files
committed
fix workflow top panel styling
1 parent df36563 commit 65f846f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/components/UI/base.css

+3-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@
8181
--borderWidth: 2px;
8282
--textFieldBorder: solid var(--borderWidth) var(--textFieldBorderColor);
8383
--topCardWidth: 682px;
84-
--pageMargin: 84px 18px;
84+
--pageMarginVertical: 84px;
85+
--pageMarginHorizontal: 18px;
86+
--pageMargin: var(--pageMarginVertical) var(--pageMarginHorizontal);
8587

8688
--dropShadow: {
8789
box-shadow: 0 2px 4px 0 rgba(19, 39, 48, .12);

src/components/Workflow/Workflow.css

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
@import "./WorkflowCard.css";
33

44
.nc-workflow {
5-
padding: var(--pageMargin);
6-
padding-bottom: 0;
5+
padding: var(--pageMarginVertical) var(--pageMarginHorizontal) 0;
76
height: 100vh;
87
}
98

0 commit comments

Comments
 (0)