Out Of The Sandbox Flex Theme - How To Keep/Show Top Bar In Mobile View , just text

I found some code to add to show the top bar on mobile view but it includes everything: the text, the search and the cart. I just needs to have the text from the top bar because the rest already shows.

The piece of code I added is the following, how can I edit it in order to just have the text from the top bar? Thank you very much

Code added here: Online Store-> Themes → Edit code->Assets->styles.scss.liquid

Coded added is:

@media only screen and (max-width: 798px)
{
.top-bar {
 display: block!important; 
}
p.navbar-item.is-flex.is-flex-wrap {
    display: none;
}
ul.social-icons.is-flex.is-flex-wrap {
    padding-top: 5%!important;
}
}

@oscprofessional

Thank you very much!