Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
### 🐛 Bug fixes

- Fixed a bug where duplicate graph components were being added
- Fixed CSS styling to center course modal and lighten overlay

### 🔧 Internal changes

Expand Down
11 changes: 6 additions & 5 deletions style/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -358,22 +358,23 @@ ol {
%modal-class {
background-color: #fff;
border-radius: 10px;
inset: 150px 300px 150px 200px;
box-shadow: 0 0 30px;
height: 550px;
height: min(550px, calc(100vh - 32px));
overflow-y: auto;
padding: 12px 30px;
position: absolute;
width: 1000px;
width: min(1000px, calc(100vw - 32px));
}

.modal-class {
@extend %modal-class;
}

%overlay {
background-color: rgb(0 0 0 / 15000%);
align-items: center;
background-color: rgb(0 0 0 / 50%);
display: flex;
inset: 0;
justify-content: center;
position: fixed;
z-index: 2;
}
Expand Down