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

pag cartões #5153

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

pag cartões #5153

wants to merge 1 commit into from

Conversation

nataliaso23
Copy link

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 work! 🎉 The code meets the task requirements and constraints effectively. While there are a few minor issues, such as ensuring all SCSS variables are defined and correcting the <html> tag, these do not significantly impact functionality. Keep up the good work and consider addressing these minor points for even better code quality in the future! 😊

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

@@ -1,18 +1,71 @@
<!doctype html>
<html lang="en">
<html

Choose a reason for hiding this comment

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

The <html> tag is self-closing, which is incorrect. The <html> tag should not be self-closing. It should be written as <html lang="en" class="page"> without the trailing slash.

font-weight: 400;
font-size: 10px;
line-height: 14px;
color: $secondary-color;

Choose a reason for hiding this comment

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

The variable $secondary-color is used here, but it's important to ensure that this variable is defined somewhere in your SCSS files. If it's not defined, it will cause an error during compilation.

justify-content: space-between;
align-items: center;
margin-bottom: 16px;
line-height: $primary-lineheight;

Choose a reason for hiding this comment

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

The variable $primary-lineheight is used here, but it's important to ensure that this variable is defined somewhere in your SCSS files. If it's not defined, it will cause an error during compilation.

align-content: center;
text-transform: uppercase;
text-decoration: none;
background-color: $blue-accent-color;

Choose a reason for hiding this comment

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

The variable $blue-accent-color is used here, but it's important to ensure that this variable is defined somewhere in your SCSS files. If it's not defined, it will cause an error during compilation.

.page__body {
margin: 0;
font-family: Roboto, serif;
color: $main-color;

Choose a reason for hiding this comment

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

The variable $main-color is used here, but it's important to ensure that this variable is defined somewhere in your SCSS files. If it's not defined, it will cause an error during compilation.

Copy link

@raulriato raulriato left a comment

Choose a reason for hiding this comment

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

Good job!

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.

3 participants