-
Notifications
You must be signed in to change notification settings - Fork 21
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
Upcoming events page #338
base: migration
Are you sure you want to change the base?
Upcoming events page #338
Conversation
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.
Great start! I made a few comments (most are trivial) on the code itself, but one thing i wanted to bring up was that maybe we can anchor some parts of the events to sides of the box to keep consistent padding. I know this might be a lot so let me know if you have any questions about anything!
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.
(@BeckyBlake tagging you here too)
Looks good, a couple things to add:
- can you make sure that when we click on the red dot we close out the modal as well (to keep in line with what we've been doing so far)
- could the lines here be a little less padded:
![Screenshot 2025-02-13 at 4 01 45 PM](https://private-user-images.githubusercontent.com/57074850/413079625-8e07e3e8-6888-44b3-ab64-c3a06ec14e6c.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk1MTAyNTEsIm5iZiI6MTczOTUwOTk1MSwicGF0aCI6Ii81NzA3NDg1MC80MTMwNzk2MjUtOGUwN2UzZTgtNjg4OC00NGIzLWFiNjQtYzNhMDZlYzE0ZTZjLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTQlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE0VDA1MTIzMVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWM1MzYwZmFlZWY1N2FlMzg4NTNiZWUzMTE4OTczOWVmYTc1MGE2MWZmN2U3NjA0MjI2MzM5ODE1MGYwMzNiNjkmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.yICsj4DjlJrW4XoRkaMu7cF-MWt48d_caoz9rKpqQcg)
@@ -1,11 +1,16 @@ | |||
.container { | |||
color: black; | |||
display: flex; | |||
gap: 0.5rem; | |||
/* gap: 0.5rem; */ |
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.
you can removew the commented code
} | ||
|
||
.hiddenButton { | ||
border: none; | ||
background-color: transparent; | ||
/* added */ | ||
width: 100%; |
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.
remove added comments before committing
topbarColor = '#65C7CC', | ||
buttonColor = '#CBEDFF', | ||
topbarColor = 'var(--wcs-blue)', | ||
buttonColor = '#D1EEEF', |
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.
this color should be var(light-blue)
@@ -125,16 +121,19 @@ | |||
.eventContainer { | |||
padding: 3.75rem; | |||
} | |||
|
|||
.pastEventsButtonText { | |||
font-size: 20px; |
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.
just as a note, we would ideally not want to use px here, and instead use either built in h1/h2 etc or use a more responsive sizing. It is fine for right now, but we'll be working on adding responsiveness later, so a good think to keep note of.
Status:
Description
I edited the upcoming events page to make the modals structured properly and of a proper size. I made the dates and day of week formatted properly.
Screenshots