-
Notifications
You must be signed in to change notification settings - Fork 222
Fixes #1017: Adds media highlights to Operation Code website: General #1024
base: master
Are you sure you want to change the base?
Conversation
Thanks so much for your continued contributions! For all of those anchor tags, we have an OutboundLink component that ties into our analytics. Could you switch to those? |
@kylemh For sure! I'll Check that out now! |
@kylemh All of the Anchor tags have been changed to use the OutboundLink component! |
@cyph3r-m00n - I mean this component: https://github.com/OperationCode/operationcode_frontend/blob/master/src/shared/components/outboundLink/outboundLink.js No need to import |
|
||
@media screen and (min-width: 415px) and (max-width: 1280px) { | ||
.logos > .imgBox { | ||
width: 350px; |
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 don't see any elements with the class .imgBox
in the markup - so is there any need for this CSS rule?
> | ||
Operation Code Looks to Help Veterans Land IT Careers | ||
</ReactGA.OutboundLink> | ||
</li> |
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.
The list-items could use some vertical space between them on mobile to provide visual separation between elements. I suggest adjusting the line-height for the all <li>
elements, and adjusting the margin-top for adjacent sibling <li>
elements:
.item {
line-height: 1;
}
.item + .item {
margin-top: 5px;
}
Due to the small width of mobile screens, for the <ul>
element, the bullets can probably be removed, and the padding can be adjusted:
.list {
list-style: none;
padding: 0 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.
Looks good, thanks for the contrib @cyph3r-m00n ! Only a few minor changes requested - please see comments that @kylemh and I already posted.
Description of changes
Adds Media Highlights to Press Page
Issue Resolved
Fixes #1017