Skip to content

Commit

Permalink
Merge pull request #70 from chronic-care/banner
Browse files Browse the repository at this point in the history
Progress bar
  • Loading branch information
swmuir authored May 31, 2024
2 parents 3844a97 + 4156371 commit eafb244
Showing 1 changed file with 17 additions and 9 deletions.
26 changes: 17 additions & 9 deletions src/components/modal/modal.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,6 @@ p {
color: #0056B3;
}

.modal-body {
color: var(--color-dark);
border: 1px solid #000000;
padding: 10px;
border-radius: 0 0 5px 5px;
}

.modal-style {
position: absolute;
top: 50%;
Expand All @@ -27,5 +20,20 @@ p {
border: 1px solid #ccc;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

z-index: 1001; /* Higher z-index to ensure it appears above other elements */
}

.modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
z-index: 1000; /* Ensure overlay appears above other content */
}

.modal-content {
color: var(--color-dark);
padding: 10px;
}

0 comments on commit eafb244

Please sign in to comment.