Skip to content

Commit

Permalink
handle scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
pishposh committed Nov 6, 2024
1 parent 766ef4d commit d536060
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions src/components/InfoDialog/InfoDialog.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.dialog {
z-index: 100;
z-index: 100;
overflow-y: scroll;
}

.dialog.show {
Expand All @@ -15,10 +16,17 @@
}

.close-button {
position: absolute;
z-index: 1;
position: fixed;
top: 10px;
right: 10px;
height: 1rem;
width: 1rem;
cursor: pointer;
}

/* .container {
margin: 1rem 0;
} */

h2 {
margin-top: 0;
}

0 comments on commit d536060

Please sign in to comment.