-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Student Modal Styling #318
Changes from 9 commits
25f6ffd
39ee405
3ce7974
700ebce
3a958a0
eae5abb
2a19d08
b9d81b5
fbec6c7
dd24a59
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ S3_USER_UPLOADS_SECRET_ACCESS_KEY=minioadmin | |
S3_USER_UPLOADS_BUCKET_NAME=compass-files | ||
|
||
[email protected] | ||
EMAIL_PASS= | ||
EMAIL_PASS= |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: PR | ||
on: [pull_request] | ||
on: [push] | ||
jobs: | ||
type-check: | ||
name: type-check | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,74 @@ | ||
/* PLACEHOLDER FOR DESIGN SYSTEMS COMPONENT CSS | ||
see notes in component file */ | ||
.editForm { | ||
width: 100%; | ||
} | ||
|
||
.modalContent { | ||
position: absolute; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is .modalContent used later on? If not, that could be a contender for code cleanup. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's used as styling for the other modals in the file (not the edit student one) so I left it in there, but we could maybe change the classnames to make the difference more clear? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Makes sense! In that case, no worries! |
||
top: 25%; | ||
left: 50%; | ||
transform: translate(-50%); | ||
width: 400; | ||
background-color: white; | ||
border: 1px solid #000; | ||
border-radius: 10px; | ||
box-shadow: 24; | ||
padding: 3rem; | ||
} | ||
|
||
.editModalContent { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
width: 80%; | ||
height: auto; | ||
background-color: white; | ||
border: 1px solid var(--on-primary-container); | ||
border-radius: 10px; | ||
box-shadow: 24; | ||
padding: 2rem; | ||
color: var(--on-primary-container); | ||
font-family: var(--inter); | ||
} | ||
|
||
.editModalHeader { | ||
font-family: var(--quicksand); | ||
font-weight: var(--semibold); | ||
font-size: var(--h4); | ||
text-align: center; | ||
} | ||
|
||
.editModalContainer { | ||
background-color: #ffffff; | ||
border-radius: 10px; | ||
padding: 10px 20px; | ||
} | ||
|
||
.editModalTextfield { | ||
width: 100%; | ||
} | ||
|
||
.editModalContainerButtons { | ||
margin-top: 1rem; | ||
padding: 10px 20px; | ||
} | ||
|
||
.editModalButtonWrap { | ||
display: flex; | ||
justify-content: space-between; | ||
width: 100%; | ||
} | ||
|
||
/* Small Devices, Tablets */ | ||
@media only screen and (min-width: 768px) { | ||
.editModalContent { | ||
width: 60%; | ||
} | ||
} | ||
|
||
/* Medium Devices, Desktops */ | ||
@media only screen and (min-width: 992px) { | ||
.editModalContent { | ||
width: 40%; | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this file deleted for code cleanup reasons?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't mean to delete this actually i'll go ahead and reinstate it!