diff --git a/src/app/services/analysis/analysis.service.ts b/src/app/services/analysis/analysis.service.ts index 391b147..2142d4a 100644 --- a/src/app/services/analysis/analysis.service.ts +++ b/src/app/services/analysis/analysis.service.ts @@ -702,7 +702,7 @@ export class AnalysisService { if (this.intervalId) { clearInterval(this.intervalId); } - this.intervalId = setInterval(watch, 5000); + this.intervalId = setInterval(watch, 3000); } public getGraphId(wrapper: Wrapper) { diff --git a/src/styles.scss b/src/styles.scss index 367f25e..78310f2 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -501,9 +501,33 @@ body::-webkit-scrollbar-button:increment { } .simple-explorer { - .loadingOverlay{ - height: 100vh; - top: 0; - position: absolute; - } + .loadingOverlay{ + left: 0; + top: 0; + width: 60vw; + position: absolute; + min-width: 0; + } } + +@media only screen and (max-width: 768px) { + .simple-explorer { + #task-list{ + .list-item { + height: 65px !important; + .column { + display: inline-block; + } + } + } + .loadingOverlay{ + height: 100vh; + width: 100vw; + top: 0; + position: absolute; + } + } + #simple-analysis-result-modal{ + width: 100% !important; + } +} \ No newline at end of file