Why isn't the mobile menu login link white in Brooklyn theme?

I have a client website who uses the Brooklyn theme - but on the menu the login links at the bottom aren’t white even though I’ve set them to be in the theme settings.

I would also like the search bar available on the mobile setup and it doesn’t seem to be right now. Any help?

https://babewholesale.com/

Hi @BreCreative ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/timber.scss->paste below code at the bottom of the file:
.mobile-nav__item--secondary a {
    color: #fff !important;
}

@media (max-width: 768px) {
    .site-header .grid--table {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .site-header .grid--table > .large--one-sixth  {
        width: 100px;
    }
    .site-header .grid--table > .medium-down--one-half  {
        width: calc(100% - 200px);
    }
    .site-header .grid--table > .medium-down--hide {
        display: flex !important;
        width: 100px;
        text-align: right;
        justify-content: end;
        
    }
    .site-header .grid--table > .grid__item:last-child,
    .site-header .grid--table > .grid__item .site-nav__item:not(.site-nav__item--compressed) {
        display: none;
    }
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Thank you so much for all your help!