-
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
Congratulations page draft 1 #19
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for pen-pals ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
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.
Not exactly sure what you needed help with, but if you wanted to see your Congratulations
page, don't forget to make sure that it's rendered on the page, e.g.
import '../../styles/ExerciseSide.scss';
+import Congratulations from '../Congratulations';
function ExerciseSide(): JSX.Element {
- return <section id="exercise-side-container"></section>;
+ return <section id="exercise-side-container">
+ <Congratulations/>
+ </section>;
}
export default ExerciseSide;
Anything else I can help with?
Draft 2, need help with the "Try these next!" text, congratulations text, and the turtle staying where they're supposed to |
Hi! So here's what I've found with respect to a working solution for centering the speech bubble:
Assuming your code looks like mine, the above steps should do well to position the speech bubble and respond to most reasonable screen sizes. And here's some other stuff I found:
|
Add .svg images and begin congratulations page layout