Skip to content
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

clock solution #3626

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

clock solution #3626

wants to merge 2 commits into from

Conversation

reb0rned
Copy link

@reb0rned reb0rned commented Feb 8, 2025

  • Keyframes implemented using from/to + transform with rotate property
  • Stopwatch is centered and has the correct arrows size
  • All Typical Mistakes from the BEM lesson theory are checked.
  • Code follows all the Code Style Rules ❗️

Copy link

@mateacademy-ai-mentor mateacademy-ai-mentor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for your hard work on this project! 😊 While your code is mostly on point, there are a few critical issues that need addressing before we can approve it. Specifically, the BEM modifier usage needs correction to ensure the speed-up functionality works as intended. Additionally, please verify your code against the BEM lesson's "Typical Mistakes" checklist and the Code Style Rules. Lastly, remove any unnecessary files like additionalPrompt to keep the project clean. Once these changes are made, you'll be all set! Keep up the great work! 🚀

✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨

🔄 Fix the issues, commit the changes, and then re-request my review using the Re-request review button in the Reviewers tab.

Copy link

@mateacademy-ai-mentor mateacademy-ai-mentor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great job on your progress! 🎉 Your code meets most of the task requirements, but there are a few areas to improve. The critical issue lies in the BEM modifier usage; ensure stopwatch--speed-up is applied correctly in the HTML to achieve the desired functionality. Also, verify your code against the BEM checklist and Code Style Rules, and remove any unnecessary files like additionalPrompt. Address these issues to enhance your skills and avoid similar problems in the future. Keep up the good work and continue learning from your experiences! 🚀

✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨

@@ -17,6 +17,10 @@
/>
</head>
<body>
<h1>Stop watch</h1>
<div class="stopwatch stopwatch--speed-up">

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The class stopwatch--speed-up is intended to be a BEM modifier. Ensure that it is used correctly according to BEM conventions. Typically, a BEM modifier should modify a block or element, and it should be used in conjunction with the block class, like stopwatch stopwatch--speed-up.

Comment on lines +52 to +58
.stopwatch--speed-up .stopwatch__min {
animation-duration: 600s;
}

.stopwatch--speed-up .stopwatch__sec {
animation-duration: 10s;
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The styles for the stopwatch--speed-up modifier are correctly defined here. However, ensure that the HTML file applies this modifier correctly to the stopwatch block to achieve the intended speed-up effect.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants