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

solution #3895

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

Conversation

SerhiiUnhurian
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.

Thank you for your hard work on this project! 😊 There are a couple of critical issues that need to be addressed before we can proceed. The stylesheet link in the HTML file should point to a compiled CSS file instead of a '.scss' file, as browsers cannot interpret Sass files directly. Additionally, please correct the typo in the SCSS file by changing '$sell-size' to '$cell-size' for consistency and clarity. Once these changes are made, we can move forward. 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.

@@ -13,6 +13,41 @@
/>

Choose a reason for hiding this comment

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

The href attribute points to a '.scss' file, which is a Sass file. Browsers cannot directly interpret Sass files; they need to be compiled into CSS. Ensure that you are linking to a compiled CSS file instead.

@@ -1,3 +1,74 @@
$sell-size: 100px;

Choose a reason for hiding this comment

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

The variable name '$sell-size' appears to be a typo. It is likely intended to be '$cell-size', as it represents the size of each calendar cell.

transition: all 0.5s;

&:first-child {
margin-left: (6 * $sell-size) + (6 * $gap-size);

Choose a reason for hiding this comment

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

The use of '$sell-size' here should be corrected to '$cell-size' to maintain consistency with the intended variable naming.


@each $day, $offset in $days {
.calendar--start-day-#{$day} .calendar__day:first-child {
margin-left: ($offset * $sell-size) + ($gap-size * $offset);

Choose a reason for hiding this comment

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

Ensure that '$sell-size' is corrected to '$cell-size' for consistency and clarity in the code.

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