Skip to content

Commit

Permalink
work for #6655 remove right: 12px;
Browse files Browse the repository at this point in the history
  • Loading branch information
OlgaLarina committed Sep 27, 2023
1 parent 113b485 commit b84d599
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 0 additions & 3 deletions src/defaultV2-theme/blocks/sd-body.scss
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,3 @@
left: 0;
right: 0;
}
.sd-root-modern--full-container .sd-root-modern__wrapper--fixed .sd-root_background-image {
right: 12px;
}
7 changes: 6 additions & 1 deletion src/defaultV2-theme/defaultV2.fontless.scss
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,14 @@ body {

.sd-root-modern--full-container .sd-root-modern__wrapper--fixed {
position: static;
overflow: auto;
width: 100%;
height: 100%;

form {
overflow: auto;
width: 100%;
height: 100%;
}
}

.sv-popup {
Expand Down
2 changes: 2 additions & 0 deletions src/knockout/kosurvey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,8 @@ ko.components.register("survey", {
ensureSurvey(survey);
setTimeout(() => {
var surveyRoot = document.createElement("div");
surveyRoot.style.width = "100%";
surveyRoot.style.height = "100%";
componentInfo.element.appendChild(surveyRoot);
survey.render(surveyRoot);
}, 1);
Expand Down

0 comments on commit b84d599

Please sign in to comment.