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 solutions

  • Submitted


    Hi there! While reviewing the "style-guide.md," I noticed the layout instructions provided are as follows:

    ## Layout
    
    The designs were created to the following widths:
    
    - Mobile: 375px
    - Desktop: 1440px
    

    However, the guide didn't specify the width for the qrcode component. I made a visual guess and set the qrcode component's width to 375px.

    To create a clear separation between mobile and desktop widths, I researched online and implemented the following CSS code, intending to use 600px as the breakpoint:

    @media screen and (max-width: 600px) {
      .qrcode-container {
        min-width: 375px;
      }
    }
    

    I'm not sure if this is what the instruction means. If anyone can tell me about that, I would be really grateful!