mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
fix(n8n Form Node): Make customizing form custom styles possible on mobile screens and on form end redirect (#17060)
This commit is contained in:
@@ -400,7 +400,7 @@
|
||||
|
||||
@media only screen and (max-width: 500px) {
|
||||
body {
|
||||
background-color: #ffffff;
|
||||
background-color: var(--color-background);
|
||||
}
|
||||
hr {
|
||||
display: block;
|
||||
@@ -409,14 +409,13 @@
|
||||
width: 95%;
|
||||
min-height: 100vh;
|
||||
padding: 24px;
|
||||
background-color: #ffffff;
|
||||
border: 0px solid var(--color-input-border);
|
||||
border-radius: 0px;
|
||||
box-shadow: 0px 0px 0px 0px #ffffff;
|
||||
}
|
||||
.card {
|
||||
padding: 0px;
|
||||
background-color: #ffffff;
|
||||
background-color: var(--color-card-bg);
|
||||
border: 0px solid var(--color-input-border);
|
||||
border-radius: 0px;
|
||||
box-shadow: 0px 0px 0px 0px #ffffff;
|
||||
|
||||
@@ -253,7 +253,7 @@ const completionProperties = updateDisplayOptions(
|
||||
],
|
||||
displayOptions: {
|
||||
show: {
|
||||
respondWith: ['text', 'returnBinary'],
|
||||
respondWith: ['text', 'returnBinary', 'redirect'],
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user