Skip to content

Commit

Permalink
updated css for progress bar and modal content visibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
ERLindeman committed Sep 23, 2024
1 parent 0b93409 commit 1531c4b
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions gui/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -379,16 +379,17 @@ fn App() -> impl IntoView {
}
.progress-bar {
width: 80%;
width: 75%;
height: 25%;
border-radius: var(--border-radius);
background-color: var(--background-color);
overflow: hidden;
margin: 0 auto;
}
.progress {
height: 20px;
height: 100%;
background-color: var(--progress-color);
transition: width 0.3s;
}
.modal-overlay {
Expand All @@ -415,6 +416,10 @@ fn App() -> impl IntoView {
overflow-x: hidden;
}
.modal-main-content {
height:25%;
}
.modal-history p {
text-align: left;
border-top: 1px solid var(--background-color);
Expand Down

0 comments on commit 1531c4b

Please sign in to comment.