How to change dropdown menu from plus to arrow brooklyn theme

Hello, on mobile when you open drop down menu to access categories you need to press + , is it possible to change to arrows?

@Avgustinas

Please share your store URL!

Thanks!

https://linosmada-2350.myshopify.com/ password: yultia

@Avgustinas

This is possible but some CSS customization work!

Thanks!

Hi @Avgustinas
You can try follow this path:
Themes => edit code => asset => theme.scss.liquid
and add this code to bottom of the file theme.scss.liquid

.mobile-nav__toggle-btn .icon.icon-minus:before,
.mobile-nav__toggle-btn .icon.icon-plus:before {
content: '';
width: 12px;
height: 12px;
border: 1px solid;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
display: block !important;
border-width: 1px 1px 0 0;
transform: rotate(135deg);
}

.mobile-nav__toggle-btn .icon.icon-minus:before {
transform: rotate(-45deg);
}

Thank you very much!