How can I remove the 'Create Account' tab from my drawer menu?

On my drawer menu i would like to remove the create account tab and unsure how

my store is heylushskin.com

pw: skincarla

@carla27
Please Go to Online Store → Themes → Edit code → Assets → theme.scss.liquid and paste this code at the end of this file.

.drawer__inner-section a[href="/account/register"] {
display: none !important;
}

@carla27

Please add the following code at the bottom of your assets/theme.scss.liquid file.

#HeaderAccountMenu .dropdown-item:nth-child(2){display:none;}

Thanks!