Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • Annas Dwiβ€’ 400

    @anasdwc

    Posted

    HelloπŸ‘‹

    1. You can use Grid or Flex to help you to make layout

    Code ⌨️:

    body {
      display: grid;
    }
    

    Documentation πŸ““:

    1. Your number of unread notification not change if button clicked
    document
      .querySelector("#read")
      .addEventListener("click", function handleClick() {
        document.querySelector(".number").innerHTML = 0;
    
        for (let i = 0; i <= 4; i++) {
          document.querySelectorAll("i")[i].style.color = "white";
          document.querySelectorAll(".notification")[i].classList.remove("unread");
        }
      });
    
    • add innerHTML = 0 make your number change to 0

    Feel free to reach me out 🍻

    1
  • Annas Dwiβ€’ 400

    @anasdwc

    Posted

    Hello πŸ‘‹

    • Your component not center in mobile view

    You can use justify-content to make your content center

    Code ⌨️:

    .parent {
       justify-content: center;
    }
    

    Documentation πŸ““: justify-content - CSS: Cascading Style Sheets | MDN

    Feel free to reach me out 🍻

    0
  • @LucasHMelo

    Submitted

    Hello Folks,

    I thought this challenge was easier, but i had some difficulties doing him. Some of this problems were:

    • Background, apparently the bg is rotate, but i can't do this, some tip ?
    • profile image, in this part i can't put the name near to the profile image, because seems a div between the image and the text, why did this happen ?
    Annas Dwiβ€’ 400

    @anasdwc

    Posted

    Hello @LucasHMelo πŸ‘‹

    • For background image, you can add some value for positioning your image

    Documentation πŸ““:

    https://developer.mozilla.org/en-US/docs/Web/CSS/background-position

    • You can add some value to background-position

    Code ⌨️:

    body {
      background-image: url(../../images/bg-pattern-top.svg),
        url(../../images/bg-pattern-bottom.svg);
      background-position: top -380px left -110px, bottom -350px right -150px;
      background-repeat: no-repeat;
      background-size: contain;
    }
    
    • It's better if you use the img HTML syntax instead of using the background-image in CSS. img HTML is also easier to customize.

    Feel free to reach me out 🍻

    0