-
Notifications
You must be signed in to change notification settings - Fork 1
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
Enhancement/88 implement new design #90
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.
reviewed, looks nice! I would say if there's time, to convert measurements from px
to rem
where applicable to help with responsiveness.
@logan-r are we planning on using a mchacks8
repo for this upcoming hackathon site? would be nice if we can retain the old mchacks7
site here
src/components/Bg/BgStyles.jsx
Outdated
@@ -7,7 +7,7 @@ export const BgStyles = styled.section` | |||
position: relative; | |||
margin-bottom: 60px; | |||
margin-top: 100px; | |||
background: url(${BgImg}); | |||
background: #F4F4F4; |
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.
we should have a colour variable defined for this
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.
we should have a colour variable defined for this
I can create a variable. I thought it wasn't worth it since we're only gonna use this colour once. what do u guys think?
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 think we should have the entire grayscale as defined color variables if not there already
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.
Yeah, colors should be same from dashboard to static site, no hardcoded colors
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.
will fix
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.
Please fill out the PR checklist/template and name your PR accordingly
src/components/variable.jsx
Outdated
@@ -4,6 +4,8 @@ export const colorHackRedMed = "#f56f65" | |||
export const colorHackRedLight = "#f89790" | |||
export const colorHackYellow = "#ffd081" | |||
export const colorHackTeal = "#48DEE2" | |||
export const purple = '#5C63AB' | |||
export const purpleLight = '#5C63AB19' |
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'm not sure if this hex code is accurate?
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.
yes, apparently the last two are alpha (transparency)
This looks really good!! @ashaduzzamane @loreina Yeah, I'll set that up Monday or Tuesday then revert this repo back to end of 2020 site |
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.
Looks good 👍
Closing to move to mchacks 8 repo |
Tickets:
List of changes:
-Updated the designs/images of the sponsor and about sections
-Changed the button colours
-Added a grey background to the sections
-Added Purple wire at the bottom of the sponsor section
Type of change:
How did you do this?
Why are you choosing this approach?
Questions for code reviewers?
PR Checklist:
develop
branch (before testing)yarn format
to format code