How can I rearrange links in the mobile drawer menu of the Brooklyn theme?

hey, I am using the Brooklyn theme and I have a question about changing the placement of the “create an account” link in the mobile drawer menu!

I want it to look like this : (so the create an account is next to the login and not underneath him. Big thanks for those who help, and if someone can tell me how to change the color of those links it would be amazing!! , (btw I can’t give any access to my store sorry) and again thanks for those who help!!!

figured it out myself!

in the edit code section of your theme, find drawer-menu.liquid and in the menu there should be code like that :

- {{ 'layout.customer.log_in' | t | customer_login_link }} 
          

       - {{ 'layout.customer.create_account' | t | customer_register_link }}
          

just add

style="display:inline-block;"

to each of the tags !

it should look like this :

- {{ 'layout.customer.log_in' | t | customer_login_link }} 
          

       - {{ 'layout.customer.create_account' | t | customer_register_link }}