Skip to content

Commit

Permalink
simple style loading screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Maiykol committed Oct 6, 2023
1 parent f1f7302 commit 540b1b2
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/app/services/analysis/analysis.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
34 changes: 29 additions & 5 deletions src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

0 comments on commit 540b1b2

Please sign in to comment.