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

  • @AdaezeIkemefuna

    Posted

    You did do the right thing with those svgs, they aren't the problem.

    • Reduce the height of the elements though and add the color to the background too. Set it to no-repeat and cover. look at how i did mine.
    body{
        
      background-image: url(./images/pattern-background-desktop.svg);
      background-color: var(--paleblue);
      background-repeat: no-repeat;
      background-position: top left;
      background-size: cover;
      position: relative;
      z-index: -1;
      color: var(--desaturatedBlue);
    }
    

    tell me if this was helpful

    Marked as helpful

    0