renamed panel to popup since that's kinda what it is lmao

This commit is contained in:
Sriram Hariharan
2023-03-05 20:50:40 -06:00
parent 295b466505
commit 6d69cd2548
6 changed files with 35 additions and 35 deletions

View File

@@ -0,0 +1,35 @@
.popupBody {
height: auto;
color: white;
padding: 10px;
display: flex;
align-items: center;
justify-content: center;
}
.coursePopupBase {
position: fixed;
transform: translateY(-50%);
top: 15px;
right: 15px;
z-index: 2147483647;
}
.coursePopupHeader {
display: flex;
height: 50;
background-color: #29465b;
width: 100%;
.closePopupButton {
display: flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
margin: 5px;
margin-left: auto;
cursor: pointer;
color: white;
}
}