diff --git a/changes/issue-13847-fix-script-content-and-output-formatting b/changes/issue-13847-fix-script-content-and-output-formatting new file mode 100644 index 0000000000..0a9bf6bc15 --- /dev/null +++ b/changes/issue-13847-fix-script-content-and-output-formatting @@ -0,0 +1 @@ +- fix script content and output formatting on the scripts detail modal. diff --git a/changes/issue-13847-fix-script-content-and-output-heights b/changes/issue-13847-fix-script-content-and-output-heights new file mode 100644 index 0000000000..07dcf2e0fb --- /dev/null +++ b/changes/issue-13847-fix-script-content-and-output-heights @@ -0,0 +1 @@ +- fix the displayed max-height display for script content and output in the script details modal. diff --git a/frontend/pages/DashboardPage/cards/ActivityFeed/components/ScriptDetailsModal/_styles.scss b/frontend/pages/DashboardPage/cards/ActivityFeed/components/ScriptDetailsModal/_styles.scss index 1158ba1f96..a69a6cb849 100644 --- a/frontend/pages/DashboardPage/cards/ActivityFeed/components/ScriptDetailsModal/_styles.scss +++ b/frontend/pages/DashboardPage/cards/ActivityFeed/components/ScriptDetailsModal/_styles.scss @@ -16,7 +16,8 @@ &__script-content-textarea { box-sizing: border-box; - min-height: 300px; + height: 300px; + overflow-y: auto; font-family: "SourceCodePro"; } @@ -51,5 +52,7 @@ &__output-textarea { font-family: "SourceCodePro"; + max-height: 150px; + overflow: auto; } }